Log in

View Full Version : Anti paralyze and other things you can do with statusbits



blackd
07-15-2012, 15:15
First of all you should understand that Tibia have 16 status bits. Each bit can be 0 or 1. If you have that status then the value is 1, else the value is 0
If you don't have any special status then the status bits array would be 0000000000000000
How to check a single bit?
$statusbit:x$
How to check first bit?
$statusbit:1$
How to check second bit?
$statusbit:2$
...
How to check the last bit?
$statusbit:16$

Now... the meaning of each bit:

bit 1 = You may not logout during a fight
bit 2 = You are hasted
bit 3 = You are paralysed
bit 4 = You are protected by a magic shield
bit 5 = You are drunk
bit 6 = You are electrified
bit 7 = You are burning
bit 8 = You are poisoned
bit 9 = You are bleeding
bit 10 = You are in protection zone
bit 11 = You may not logout or enter a protection zone
bit 12 = You are strengthened
bit 13 = You are cursed
bit 14 = You are dazzled
bit 15 = You are freezing
bit 16 = You are drowning

Note: This guide is valid since Tibia 7.73. Older versions only have bits 1-8 and bits have a different meaning there.

Example of use:

How to cure paralyze with exure whenever you get paralyzed:
cond1: $statusbit:3$
operator: #number=#
cond2: 1
action: exura
delay action: 400
do not execute again: 1000

Click the image to see the settings:
7479

Vinnie
07-15-2012, 16:44
That's a big help...That check's if your paralyzed then cast's exura to cure it, What if you want it to check when mana shield has run out and then cast utamo vita?


cond1: $statusbit:4$
operator: #number=#
cond2: 1
delay action: 400
do not execute again: 1000

Would it still be the same or would it be something different?

blackd
07-15-2012, 16:48
That's a big help...That check's if your paralyzed then cast's exura to cure it, What if you want it to check when mana shield has run out and then cast utamo vita!?


How to check when mana shield has run out and then cast utamo vita:

cond1: $statusbit:4$
operator: #number=#
cond2: 0
action: utamo vita
delay action: 400
do not execute again: 4000

Vinnie
07-15-2012, 16:52
Thank's for the fast reply am going to test this out it will be a big help. Is it detectable?

Ravhul
07-15-2012, 17:32
Am I able to use BSC and Proxy simultaneously without any problems? Will I remain safe?
I.E. I use BSC for longer time now and I'm satisfied but what I need is anti-paralyse function. I would not bot or so with Proxy.

Vinnie
07-15-2012, 21:41
How about Utura!?

cond1: $statusbit:12$
operator: #number=#
cond2: 0
action: utura
delay action: 400
do not execute again: 4000

Tested this last night and it work's perfectly thank's for the infomation daniel.

Ravhul
07-18-2012, 20:32
Am I able to use BSC and Proxy simultaneously without any problems? Will I remain safe?
I.E. I use BSC for longer time now and I'm satisfied but what I need is anti-paralyse function. I would not bot or so with Proxy.

Bump. I need to know if Proxy's modification of the client will get me banned if I only use conditions, i.e. anti paralyse.

blackd
07-25-2012, 19:07
Bump. I need to know if Proxy's modification of the client will get me banned if I only use conditions, i.e. anti paralyse.

I am not 100% sure, but I think you won't be detected if you only use that part of blackd proxy.
Anyways maybe I will make something similar in BSC in a near future.

Ravhul
07-26-2012, 16:33
I am not 100% sure, but I think you won't be detected if you only use that part of blackd proxy.
Anyways maybe I will make something similar in BSC in a near future.

That would be dope! :D
Anyway I am facc now so I am not in a hurry, was just asking so I could use it in the future but if you're gonna add it to BSC in the future then I dont have worry about that :)
Thanks for you answer.

RaRF
09-13-2012, 09:47
Omg!, This thread is one of the most useful tutorials for the bot, this is basic stuff thanks so much :)

RaRF
09-14-2012, 03:21
I have 1 Question, which statusbit says if I'm invisible? I would like to make an utana vid conditional :)

xHellsx
09-14-2012, 05:24
I have 1 Question, which statusbit says if I'm invisible? I would like to make an utana vid conditional :)

For an invisible condition

Your best picking 5 seconds prior to becoming uninvisible. Otherwise because of the randomiser you could be visible for 5-10 seconds which could end up dieing. So just set use utana vid every x seconds (randomised by 5 seconds) to ensure you don't become visible.