sorry for the noob question. where can i find game.bin?
IN your Aura kingdom Directory. try and find "Macro.lua" or just "Macro" if you dont have extensions view enabled.. right click dat and select "Open with". then select Notepad.Quote:
Thank you for the help and one last question the bot is working okay how can i add more keys for it to press as of the moment its only pressing keys 1 2 and 3.
--[[ LUA SIMPLE EXAMPLE ]]
IsTarget = CGetPlayerTarget( )
if IsTarget == 0 then
CMoveTogglePos( )
CSleep( 100 )
CSelectNearestTarget( )
else
if CGetPlayerTarget( ) then
CSendSlotBarSkill( 1 )
CSleep( 300 )
end
if CGetPlayerTarget( ) then
CSendSlotBarSkill( 2 )
CSleep( 300 )
end
if CGetPlayerTarget( ) then
CSendSlotBarSkill( 3 )
CSleep( 300 )
end
if CGetPlayerTarget( ) then
CSendSlotBarSkill( 4 )
CSleep( 300 )
end
end
Thanks broQuote:
IN your Aura kingdom Directory. try and find "Macro.lua" or just "Macro" if you dont have extensions view enabled.. right click dat and select "Open with". then select Notepad.
then replace the contents of it with
just look at dis code.. you should be able to notice how i added more keys for it to press.. and on a side note. yu cant use ctrl or alt with this macro for the moment..Code:--[[ LUA SIMPLE EXAMPLE ]] IsTarget = CGetPlayerTarget( ) if IsTarget == 0 then CMoveTogglePos( ) CSleep( 100 ) CSelectNearestTarget( ) else if CGetPlayerTarget( ) then CSendSlotBarSkill( 1 ) CSleep( 300 ) end if CGetPlayerTarget( ) then CSendSlotBarSkill( 2 ) CSleep( 300 ) end if CGetPlayerTarget( ) then CSendSlotBarSkill( 3 ) CSleep( 300 ) end if CGetPlayerTarget( ) then CSendSlotBarSkill( 4 ) CSleep( 300 ) end end
ok lets take dis 1 step at a time..Quote:
Thanks bro
Why is the bot keep moving forward? and after that it got stuck in a wall is there a way for me to keep it on one place?