Jump to content

strat3g

Members
  • Posts

    5
  • Joined

  • Last visited

Posts posted by strat3g

  1. 1 hour ago, zakne11 said:

    it's work as it should, you just take ready script.

    add second function for system messages

    connect("g_game", "onTextMessage", checkBotText)
    function checkBotText(mode, message)

     

    Thank you mate! I already tested it on system msgs like Lottery, 15min kick msg etc. and it worked for me. I replaced these 2 lines and it worked.

  2. Hello. Ive been banned recently because I used that script which one for sure not working. Msgcheck appeared just in server log window so it seems like system msg. I was suprised because if I remember correctly it appeared in default window also. I made screenshoots so if needed I will send you. Could you fix that script? Would be nice, thanks.

     

    auto(100)
    if not g_game.isOnline() then return end
    local messagesToDetect = {"[English]", "msgheck", "bot"} -- which words should it look for?
    local respondToMessage = false -- should it respond if trigger word is found?
    local messageToRespond = "im here" -- what should it respond?
    local pauseBot = false -- should it pause the bot?
    local playAlarm = true -- should it play alarm?
    
    connect("g_game", "onTalkMessage", checkBotMessage)
    
    function checkBotMessage(name, level, mode, message, channelId, creaturePos)
      for _, messageToDetect in pairs(messagesToDetect) do
        if string.find(message, messageToDetect, 1, true) then
          if respondToMessage then
          	g_game.talk(messageToRespond)
          end
          if pauseBot then
          	setOption("Global/BotPaused", "true")
          end
          if playAlarm then
            for i = 1, 5 do
              playSound("alarm.wav")
              sleep(1000)
            end
          end
          return
        end
      end
    end
  3. On 3/1/2021 at 2:35 AM, Boltrex said:

     

    hello I play a server of tibia 7.72 (REALESTA) there are functions to use in hotkey for example .. Useonself, useontarget, useoncroshair .. just putting the element id? either Manafluid, UH, Runes etc

     

    I think you should use bigger font... Like it changes anything in terms of answer for your question. LOL

×
×
  • Create New...