| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 42,533
» Latest member: triip
» Forum threads: 21,053
» Forum posts: 108,637
Full Statistics
|
| Online Users |
There are currently 7 online users. » 0 Member(s) | 1 Guest(s) Applebot, Baidu, Bing, Google, UptimeRobot, Yandex
|
| Latest Threads |
Looter by browse field
Forum: Sugestions
Last Post: oskleiver
09-24-2025, 09:05 AM
» Replies: 6
» Views: 4,029
|
faster reaction to go to ...
Forum: Sugestions
Last Post: jhonnathanmuller
09-23-2025, 02:38 PM
» Replies: 2
» Views: 2,447
|
Macro Check Supply
Forum: General
Last Post: sieger
09-21-2025, 11:18 PM
» Replies: 7
» Views: 11,548
|
Kasteria 8.54
Forum: Sugestions
Last Post: rodrigugomes
09-18-2025, 10:54 AM
» Replies: 4
» Views: 4,133
|
10s "sleep" after start b...
Forum: Sugestions
Last Post: jesusazr25
09-17-2025, 09:55 PM
» Replies: 1
» Views: 2,354
|
Walkabe or not?
Forum: Sugestions
Last Post: noway23
09-10-2025, 07:17 PM
» Replies: 3
» Views: 3,468
|
Latest tibia 10 and bbot ...
Forum: General
Last Post: [email protected]
09-09-2025, 05:58 PM
» Replies: 10
» Views: 7,234
|
variable reconect
Forum: Sugestions
Last Post: [email protected]
09-07-2025, 01:19 PM
» Replies: 12
» Views: 7,887
|
confidential adult chat r...
Forum: Off-Topic
Last Post: [email protected]
09-03-2025, 04:54 AM
» Replies: 1
» Views: 2,183
|
@Update 10.61
Forum: General
Last Post: MaudHemi
02-07-2025, 09:47 AM
» Replies: 4
» Views: 3,967
|
|
|
| Sword / life ring |
|
Posted by: Catar - 04-13-2016, 01:38 PM - Forum: Free Scripts
- Replies (2)
|
 |
Macro that puts skill ring on while fighting and life ring when not fighting.
Also takes ring out in protection zone
Variables
Code: AtRingBP=3091 (3091 sword ring in BP)
AtRingF=3094 (3094 sword ring on finger)
[macro]700 {lifering}
PeZe:=Status.InPZ()
Battle:=Self.Attacking()
swring:=Misc.ItemCountEx(!AtRingBP!)
coAS:=Self.Inventory.Ring()
!swring!>=1 [sword]
!Battle!==1 [pz0]
!coAS!<>!AtRingF!
Self.Equip.Ring(!AtRingBP!)
exit()
{pz0}
!PeZe!<>1 [pz1]
!coAS!<>3089
Self.Equip.Ring(3052)
exit()
{pz1}
Self.UnEquip.Ring(0)
exit()
exit()
{sword}
!PeZe!<>1 [pz2]
!coAS!<>3089
Self.Equip.Ring(3052)
exit()
{pz2}
Self.UnEquip.Ring(0)
exit()
[/macro]
|
|
|
| berserk potion auto drinker |
|
Posted by: Catar - 04-13-2016, 07:24 AM - Forum: Free Scripts
- No Replies
|
 |
Variables:
drinkberk=1 (turns macro ON if 1)
shielding=115 (put your shielding skill)
Change the name of the monster that you want to kill with berserk potions
[macro]700 {berserkpot} Creatures.ByRangeName(7, Hellspawn)>=1 !drinkberk!==1 skill:=Self.Skill.Shielding() bers:=Misc.ItemCountEx(7439) !skill!>=!shielding! !bers!>=1 Hotkey.Use(7439) exit()
[/macro]
Code: Creatures.ByRangeName(7, Hellspawn)>=1
!drinkberk!==1
skill:=Self.Skill.Shielding()
bers:=Misc.ItemCountEx(7439)
!skill!>=!shielding!
!bers!>=1
Hotkey.Use(7439)
exit()
So berserk potions increase our skill by 5, but REDUCES shielding by 10,
potion works 10 minutes, so to avoid bot drinking it too often my macro checks if the shielding skill is already reduced.
If not, it will drink potion
Very usefull on monsters like hellspawns or werewolves, which drop them.
Effect:
![[Image: 4AbJrJC.jpg]](http://i.imgur.com/4AbJrJC.jpg)
|
|
|
|