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
A request for some useful scripts
#1
Hello everyone, I need some useful scripts.

1.when poisoned say "exana pox"
2.play alarm if more than 4 monsters on the screen
3.play alarm when I get hit more than 100
4.when 60% hp wait 3 seconds and use uh on yourself
Thank you in advance
|Only Registered members can see download links. | Click here to buy subscription or here to register.
|Only Registered members can see download links. | Click here to buy subscription or here to register.alt="Smile" title="Smile" class="smilie smilie_1" />
Reply

#2
Hello.

1.
if mp() >= 30 and cancast() and poisoned() then
     cast('exana pox')
     wait(100, 200)
end

2.
if maround() >= 4 then
     playsound('default')
end

3.
local DAMAGE_ALERT = 100 -- This value or higher.


local Messages = getnewmessages()
local REGEX_DMG_TAKEN     = '^You lose (%d+) (%l+) due to an attack by ?a?n? (.-)%.$'

if type(Messages) == 'table' then
   for _, msg in ipairs(Messages) do
       local dmgAmount, dmgType, dmgCreature = msg.content:match(REGEX_DMG_TAKEN)
       if tonumber(dmgAmount) >= DAMAGE_ALERT then
           playsound('default')
           flashclient()
       end
   end
end

4. Healer can do that, but here it goes:
if hppc() <= 60 and cancast() then
     wait(3000, 3500)
     useitemoncreature('ultimate healing rune', id())
end
Reply

#3
Code:

local DAMAGE_ALERT = 100 -- This value or higher.


local Messages = getnewmessages()
local REGEX_DMG_TAKEN     = '^You lose (%d+) (%l+) due to an attack by ?a?n? (.-)%.$'

if type(Messages) == 'table' then
   for _, msg in ipairs(Messages) do
       local dmgAmount, dmgType, dmgCreature = msg.content:match(REGEX_DMG_TAKEN)
       if tonumber(dmgAmount) >= DAMAGE_ALERT then
           playsound('default')
           flashclient()
       end
   end
end
need it to disable healer please.
Reply

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



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016