poepgat
Junior Member
Posts: 5 Likes: 0
Currently Offline
Last Online: Feb 28, 2020 11:34:22 GMT
View Profile
Registered On: Jul 24, 2016 10:08:45 GMT
|
Post by poepgat on Aug 8, 2016 22:22:39 GMT
Hello,
I was wondering if there could be a combined vis hur/ue script.
Targeting on melee reach strike, then if u set it at targeting e wave it will just spam the shit out of it and won't ue as much as it should. So my question was to combine the following scripts :
auto 200 ewave
auto 500 listas 'Auto UE' | if [$monstersaround.2 >= 3] if [$mppc > 10] ifnoplayeronscreen say 'exevo mas san | if [$monstersaround.3 >= 3] if [$mppc > 10]
So that it will most likely to use UE over the e wave if there are 2 creatures.
Hope you can help elfbot master!
Kind Regards, Poepgat
|
|
|
Post by Darth Maul on Aug 9, 2016 5:45:33 GMT
Hey, this could work with a little editing: elfbotscripts.com/thread/5/exori-gran-switch-players-screen auto 100 | dontlist | if [$playersaround.10 == 0 && $monstersaround.2 >= 3] {istargeting say 'Exevo Gran Mas flam' } | if [$playersaround.10 >= 1 || $monstersaround.2 < 3] {istargeting say 'exevo vis hur'}
|
|
poepgat
Junior Member
Posts: 5 Likes: 0
Currently Offline
Last Online: Feb 28, 2020 11:34:22 GMT
View Profile
Registered On: Jul 24, 2016 10:08:45 GMT
|
Post by poepgat on Aug 9, 2016 9:20:47 GMT
Dear Darth Maul, As i requested that it would ue before wave is indeed a succes with this script , so thanks for that! The only thing what kinda bothers me is that it will use waves entirely miss, duo it will wave when targeted(so i will waved into houses etc) 60/40 hitrate tho. And it just waves into peoples faces, so with a refiller combined it kinda sucks:P. Or i have to make a special action waypoints with wait xxxx to remove my skull. Anyways thanks! Kind regards, Poepgat
|
|
|
Post by Darth Maul on Aug 9, 2016 12:36:19 GMT
You can edit it so it wont wave when players are onscreen.
auto 100 | dontlist | if [$playersaround.10 == 0 && $monstersaround.2 >= 3] {istargeting say 'Exevo Gran Mas flam' } | if [$playersaround.10 == 0 && $monstersaround.2 < 3] {istargeting say 'exevo vis hur'}
This might also help to increase the hit chance?
auto 100 | dontlist | if [$playersaround.10 == 0 && $monstersaround.2 >= 3] {istargeting say 'Exevo Gran Mas flam' } | if [$playersaround.10 == 0 && $monstersaround.2 < 3] {istargeting ewave}
|
|