|
Post by Darth Maul on Jan 13, 2015 11:14:53 GMT
Equip Stone Skin Amulet (SSA). If you run out of SSA's in your current bp it'll try to open the next backpack.
auto 10 | dontlist | if [$amuletslot.id != 3081 && $winitemcount.3081 >= 1] {equipammy 3081 | if [$amuletslot.id == 3081] statusmessage 'SSA Equipped!' | end} | if [$winitemcount.3081 == 0 && $winitemcount.2870 >= 1] {openitem 2870 1 1 | statusmessage 'Opening next SSA backpack!' | end}
|
|
icecube
New Member
Posts: 1 Likes: 0
Currently Offline
Last Online: Apr 2, 2018 18:14:07 GMT
View Profile
Registered On: Apr 7, 2016 15:41:25 GMT
|
Post by icecube on Apr 10, 2016 13:28:36 GMT
How do i make it only use SSA When im at 40% HP and then make it use a custom amulet when over 50% hp ? i've tried but i couldn't get it fully function
|
|
|
Post by Kai on Apr 10, 2016 21:27:17 GMT
auto 200 dontlist | if [$hppc <=50] {equipammy 3180} | if [$hppc >= 51] {equipammy 'insert ID here'}
|
|
igrr0x
New Member
Posts: 2 Likes: 0
Currently Offline
Last Online: Apr 10, 2018 17:13:58 GMT
View Profile
Registered On: Dec 28, 2016 20:02:11 GMT
|
Post by igrr0x on Jan 13, 2018 14:17:17 GMT
Is it possible to comibine those two scripts?
Wear SSA when belowe 40% hp, wear Aol when above 60%hp, open next bp when there are no more ssas. Thanks!
|
|
|
Post by Siwy on Jan 14, 2018 1:28:21 GMT
Yeah its possiblle but proably AOL will stay in last backpack :V
|
|
igrr0x
New Member
Posts: 2 Likes: 0
Currently Offline
Last Online: Apr 10, 2018 17:13:58 GMT
View Profile
Registered On: Dec 28, 2016 20:02:11 GMT
|
Post by igrr0x on Jan 17, 2018 1:58:49 GMT
Then could you add a commend where it checks if there are any SSA if no, wear AOL.
Dało by rade? xD
|
|
|
Post by Darth Maul on Jan 18, 2018 10:44:29 GMT
hmm, something like this?
This will see if you have any SSA in your current bp, if so equip them. If not, it will check if you have any gray bps, if so open it to find more SSA's; if not it will just equip an amulet of loss.
auto 10 | dontlist | if [$amuletslot.id != 3081 && $winitemcount.3081 >= 1] {equipammy 3081 | if [$amuletslot.id == 3081] statusmessage 'SSA Equipped!' | end} | if [$winitemcount.3081 == 0 && $winitemcount.2870 >= 1] {openitem 2870 1 1 | statusmessage 'Opening next SSA backpack!' | end} | if [$winitemcount.3081 == 0 && $winitemcount.2870 <= 0] {equipammy 3057 | end}
Alternatively you could use this, this only checks to see if you have any SSA's in your current backpack, if not it will equip and amulet of loss. (so you have to manually open another bp with more SSA's. If you have hands, this could be more useful so you're bot doesn't freak out.
auto 10 | dontlist | if [$amuletslot.id != 3081 && $winitemcount.3081 >= 1] {equipammy 3081 | if [$amuletslot.id == 3081] statusmessage 'SSA Equipped!' | end}if [$winitemcount.3081 == 0] {equipammy 3057 | end}
|
|