z3tt3
Junior Member
Posts: 8 Likes: 2
Currently Offline
Last Online: Nov 6, 2020 21:34:03 GMT
View Profile
Registered On: Jul 23, 2016 13:37:14 GMT
|
Post by z3tt3 on Jul 26, 2016 7:44:54 GMT
Yo! First off, awesome scripts here on the forum.
I want a script that if you are attacking a monster and the monster hppc is over x and if the distance is lower or = to 4 and if my mppc is over x then say exori san, else just say exori con. I tried to do it myself but I couldnt do it in just one script so I made two seperate scripts but I want it combined.
auto 100 if [$target.isshootable && $mppc >= 40 && $target.hppc < 15] {say 'Exori con' | wait 900} auto 100 if [$target.isshootable && $mppc >= 40] {if [$attacked.distance <= 4 && $target.hppc >= 15] {say 'Exori san' | wait 900} | end}
When I'm already asking for a script I would also love a script that does so you never face another player so they cant rs trick me.
Thanks!
|
|
|
Post by VoltZ on Jul 26, 2016 9:45:09 GMT
auto 10 | if [$monstersaround.4 >= 1 && $target.hppc < 15 && $mppc >= 40] {say 'exori san | end} say exori con I Don't Try It Check It If u Find Any Problems tell me
|
|
z3tt3
Junior Member
Posts: 8 Likes: 2
Currently Offline
Last Online: Nov 6, 2020 21:34:03 GMT
View Profile
Registered On: Jul 23, 2016 13:37:14 GMT
|
Post by z3tt3 on Jul 26, 2016 11:23:11 GMT
Doesnt work, spams exori con and just makes me exhausted. Just to be clear, the two scripts I posted above do work with eachother, but I cant make one scripts that combines both of them.
|
|
|
Post by VoltZ on Jul 26, 2016 13:26:00 GMT
auto 400 isattacking | if [$monstersaround.4 >= 1 && $target.hppc < 15 && $mppc >= 40] {say 'exori san | end} say exori con
|
|
|
Post by VoltZ on Jul 26, 2016 13:27:00 GMT
Try this if it still spams till me
|
|
z3tt3
Junior Member
Posts: 8 Likes: 2
Currently Offline
Last Online: Nov 6, 2020 21:34:03 GMT
View Profile
Registered On: Jul 23, 2016 13:37:14 GMT
|
Post by z3tt3 on Jul 26, 2016 13:58:45 GMT
Still keeps spamming exori con :/
|
|
|
Post by VoltZ on Jul 26, 2016 14:07:30 GMT
auto 400 | if [$target.isshootable && $monstersaround.4 >= 1 && $target.hppc > 15 && $mppc >= 40] {say 'exori san | end} say exori con
Check This If i'm at home I would test myself and see whats wrong :/
|
|
z3tt3
Junior Member
Posts: 8 Likes: 2
Currently Offline
Last Online: Nov 6, 2020 21:34:03 GMT
View Profile
Registered On: Jul 23, 2016 13:37:14 GMT
|
Post by z3tt3 on Jul 26, 2016 14:58:16 GMT
Still same issue
|
|
|
Post by VoltZ on Jul 26, 2016 15:15:22 GMT
but ' Else ' Instead of ' End ' and try -.-
|
|
z3tt3
Junior Member
Posts: 8 Likes: 2
Currently Offline
Last Online: Nov 6, 2020 21:34:03 GMT
View Profile
Registered On: Jul 23, 2016 13:37:14 GMT
|
Post by z3tt3 on Jul 26, 2016 15:35:09 GMT
like this?
auto 400 | if [$target.isshootable && $monstersaround.4 >= 1 && $target.hppc > 15 && $mppc >= 40] {say 'exori san' | else say 'exori con' Problem with this code is that it doesnt shoot exori con when the mob is under 15% hp.
|
|
|
Post by Kai on Jul 26, 2016 16:24:58 GMT
auto 200 dontlist | isattacking { if [$target.isshootable && $mppc >= 40 && $target.distance <= 4 && $target.hppc >= 5] {say 'Exori san' | wait 500 | end} | isattacking { if [$target.isshootable && $mppc >= 40 && $target.distance >= 5 && $target.hppc >= 5] {say 'Exori con' | wait 500 | end} I havent tested it. Nice script though.
|
|
z3tt3
Junior Member
Posts: 8 Likes: 2
Currently Offline
Last Online: Nov 6, 2020 21:34:03 GMT
View Profile
Registered On: Jul 23, 2016 13:37:14 GMT
|
Post by z3tt3 on Jul 26, 2016 21:26:26 GMT
Thanks Kai! I did some minor changes of your script and got it working. Here is it:
auto 100 dontlist | isattacking { if [$target.isshootable && $mppc >= 40 && $target.distance <= 4 && $target.hppc >= 15] {say 'Exori san' | wait 1300 | end} | isattacking { if [$target.isshootable && $mppc >= 40 && $target.hppc < 15] {say 'Exori con' | wait 1300 | end} I increased the wait so I cant get exhausted and also deleted the target distance for exori con. You also had one greater-than sign in the wrong way.
|
|