![]() |
what am I doing wrong? - Printable Version +- BBot - The best bot of the world (https://forums.bmega.net) +-- Forum: Scripts & Macros (https://forums.bmega.net/forum-4.html) +--- Forum: Requests (https://forums.bmega.net/forum-17.html) +--- Thread: what am I doing wrong? (/thread-5049.html) |
what am I doing wrong? - bloxer - 10-22-2012 Im trying to make script to use exori hur/ico when exactly 2 creatures are around me but when i run it it trys to make the spell even when no moster on screen 6500 {exori hur} Self.Mana(>=100) Creatures.Beside(=2) Self.Say(exori ico) to make safe spell (not attack when player on screen) Im new in this bot script system xD one last question I wanna make utito tempo+exori gran+exori but only make attack spell if no player on screen it makes utito and exoris good, but i tested with a friend and when he is on screen anyways the bot makes the spells and i dont wanna get pk 6500 {utito tempo+exori gran+exori} Self.Mana>=370 Creatures.Beside>=3 Self.Say(utito tempo) Macro.Wait(2000) Creatures.PlayersOnScreen=01 Self.Say(exori gran) Macro.Wait(1000) Creatures.PlayersOnScreen=01 Self.Say(exori) what do i must put there? Creatures.PlayersOnScreen 01 Creatures.PlayersOnScreen ==0 Creatures.PlayersOnScreen =0 RE: what am I doing wrong? - Dexter - 10-22-2012 Use attack sequences for this: http://forums.bmega.net/showthread.php?tid=3063 And also has errors in command syntax. Self.Mana()>=100 Creatures.Beside()>=2 Self.Say(exori ico) Read the bbot's wiki: http://forums.bmega.net/forumdisplay.php?fid=6 RE: what am I doing wrong? - bloxer - 10-22-2012 (10-22-2012, 02:35 AM)Dexter Wrote: Use attack sequences for this: ok i'll make the right syntax BUT if I use attack sequences for exori and exori gran i'll get pk for sure becasue there is not a safe option on those sequences, and that its bad for me it may work for exori ico/hur but for area spells no ![]() |