Everyone who has never used our Bots before, can test each one for 2 days without any limitation.
The trial is given automatically when you login on the Bot, but in some cases it wouldn't work (security reasons).
If this happens, send me a private message and i will be checking the failed trials manually and adding it for those who didn't get it.
We are looking for resellers who may accept payment methods different from ours, including classictibia's cash, realesta's cash, mastercores' cash, etc. Interested? Click here at anytime.



Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Trade help
#1
Hi,

the trade helper doesnt seem to function for me. When i enable it, it keeps typing the message(not waiting 120sec), keeps typing even though I cant type more in trade chat. Yes I have the "Select previous channel" checked with 120-125sec. Using version 1.1.1 bot.

Any suggestions or maybe LUA script that might to the job?
Reply

#2
Hello.

Yeah, it will be fixed on next release.

You can use this script on Persistents to do the same.
local SETTINGS = {
    MESSAGE = "selling mace", -- Message to say.
    YELL = false, -- Yell message?
    TIMES = { Min = 120, Max = 130 }, --IN SECONDS... Time to wait between each message.
}

if NEXT_RUN == nil then
    NEXT_RUN = runningtime() + random(SETTINGS.TIMES.Min, SETTINGS.TIMES.Max)
end

if runningtime() >= NEXT_RUN then
    if SETTINGS.YELL then
        say('#y ' .. SETTINGS.MESSAGE, 'Default')
        wait(600, 1800)
    end
    say(SETTINGS.MESSAGE, 'Advertising')
    wait(600, 1800)
    selectchannel('Default')
    NEXT_RUN = runningtime() + random(SETTINGS.TIMES.Min, SETTINGS.TIMES.Max)
end
Reply

#3
|Only Registered members can see download links. | Click here to buy subscription or here to register.

Thank you! Works perfectly
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016