MageBot WIP V 0.0.0.1 (For Razor Enhanced) by KikRox268

Description: This script is a work in progress! As it stands, you can select which summons you'd like to summon via the variables and it will summon those creatures. it will also summon your creatures if they die. Now IT WILL NOT SUMMON AN EXACT REPLACEMENT of the summon that dies, still working on that. The notes at the bottom are the things I could think of to want to add to this script.

#autosummon selection castWaterElemental = 0 castAirElemental = 0 castFireElemental = 0 castEarthElemental = 0 castSummonDaemon = 1 #magery skill check if Player.GetRealSkillValue("Magery") < 80: Player.HeadMessage(88,"You're still a Padawan") Misc.ScriptStop("MageBot WIP") elif Player.GetRealSkillValue("Magery") >= 80: Player.HeadMessage(88,"The Force is strong in you") #auto summon pets if Player.Followers < 4: Player.HeadMessage(88,"Need Followers") while Player.Followers < 4: if castWaterElemental == 1 and Player.Mana >= 50: Spells.CastMagery("Water Elemental") Misc.Pause(3000) if castAirElemental == 1 and Player.Mana >= 50: Spells.CastMagery("Air Elemental") Misc.Pause(3000) if castFireElemental == 1 and Player.Mana >= 50: Spells.CastMagery("Fire Elemental") Misc.Pause(3000) if castEarthElemental == 1 and Player.Mana >= 50: Spells.CastMagery("Earth Elemental") Misc.Pause(3000) if castSummonDaemon == 1 and Player.Mana >= 50: Spells.CastMagery("Summon Daemon") Misc.Pause(3000) break if Player.Followers >=4: Player.ChatSay("All Guard") Misc.Pause(3000) Player.UseSkill("Meditation") Target.WaitForTarget(3500,False) #auto target enemies and mobs #auto cast spells and skills (meditate) #auto smart heal (heal/gheal/cure) and auto smart pots