Shaiya[US] - Shaiya Bot ZS
Re: Shaiya[US] - Shaiya Bot ZS
will do that in a sec, admin could u check my post in ur bot topic, having few little problems, bot working fine otherwise
Re: Shaiya[US] - Shaiya Bot ZS
Tue May 26 19:12:21 2009 : macro_init()
Tue May 26 19:12:21 2009 : interface=INTERFACE_1024X768
Tue May 26 19:12:21 2009 : Shaiya Window process ID: 3147588
Tue May 26 19:12:21 2009 : win_width: 1025, win_height: 768
Tue May 26 19:12:21 2009 : skill: Piercing Shot 1
Tue May 26 19:12:21 2009 : skill: Rapid Shot 1
Tue May 26 19:12:21 2009 : skill: Nailed Shot 1
stack traceback:
D:\micromacroza\micromacro\lib\lib.lua:476: in function 'startMacro'
main.lua:175: in main chunk
----------TRACEBACK END----------
Tue May 26 19:12:21 2009 : .//classes/shortcuts/skill.lua:35: attempt to concatenate local 'name' (a nil value)
Tue May 26 19:12:21 2009 : interface=INTERFACE_1024X768
Tue May 26 19:12:21 2009 : Shaiya Window process ID: 3147588
Tue May 26 19:12:21 2009 : win_width: 1025, win_height: 768
Tue May 26 19:12:21 2009 : skill: Piercing Shot 1
Tue May 26 19:12:21 2009 : skill: Rapid Shot 1
Tue May 26 19:12:21 2009 : skill: Nailed Shot 1
stack traceback:
D:\micromacroza\micromacro\lib\lib.lua:476: in function 'startMacro'
main.lua:175: in main chunk
----------TRACEBACK END----------
Tue May 26 19:12:21 2009 : .//classes/shortcuts/skill.lua:35: attempt to concatenate local 'name' (a nil value)
- Administrator
- Site Admin
- Posts: 5313
- Joined: Sat Jan 05, 2008 4:21 pm
Re: Shaiya[US] - Shaiya Bot ZS
I don't know what changes you have or haven't made that results you in not seeing the errors that I am seeing, but again, one of your skills is not listed in data/skills.xml. Remove Battle Cry from your character's XML file, and try again.
Re: Shaiya[US] - Shaiya Bot ZS
i get the same error even if have 0 skills added to char.xml file...
Re: Shaiya[US] - Shaiya Bot ZS
okey i have been doing some testing and the bot does "work" when i keep the skills that are already in character xml by default, if i add rapid shot / piercing shot and ranger buffs it starts to whine about nil value
- Administrator
- Site Admin
- Posts: 5313
- Joined: Sat Jan 05, 2008 4:21 pm
Re: Shaiya[US] - Shaiya Bot ZS
I don't know what you did wrong, then. Delete all of the files you have. Download MicroMacro 1.0 beta here. Then download the attachment and put it in your scripts folder. You should not need any other files after this.
Recreate your profile from scratch (do not use the one you currently have) and see if it works.
Recreate your profile from scratch (do not use the one you currently have) and see if it works.
- Attachments
-
- zs_shaiya.zip
- (55.36 KiB) Downloaded 506 times
Re: Shaiya[US] - Shaiya Bot ZS
well i found the problem was i left 1 attack slot emply when i have rapid shot 2x in the line it does work, but now it still only does the buffs, half of time it timeouts, but it doesnt do any attack skills or autoattack... :i
Re: Shaiya[US] - Shaiya Bot ZS
well now the bot works execpt it doesnt attack it used buff-s and moves the camera around...
in micromacro it just says avatar cycle target 3 4 and keeps doing it
in micromacro it just says avatar cycle target 3 4 and keeps doing it
-
- Posts: 148
- Joined: Fri Mar 21, 2008 9:10 pm
Re: Shaiya[US] - Shaiya Bot ZS
I notice i get that also if my Monster bar is under my player bar. Also what screen size are u useing on the game?
-
- Posts: 148
- Joined: Fri Mar 21, 2008 9:10 pm
Re: Shaiya[US] - Shaiya Bot ZS
shadow any luck getting the bot 2 work?
-
- Posts: 148
- Joined: Fri Mar 21, 2008 9:10 pm
Re: Shaiya[US] - Shaiya Bot ZS
Code: Select all
<config name="mem_text_message_offset">0x6fc648</config>
<config name="mem_text_message_offset_index">0x1404</config>
- Administrator
- Site Admin
- Posts: 5313
- Joined: Sat Jan 05, 2008 4:21 pm
Re: Shaiya[US] - Shaiya Bot ZS
I found the mem_text_message_offset, so that one is new. I just don't know what the mem_text_message_offset_index is for. mem_text_message_size shouldn't have changed; so we don't need to update this. mem_text_message_common_offset has also been updated and is working to the best of my knowledge. Finally, mem_text_message_entered_offset is another one which I don't know what it is for.
Re: Shaiya[US] - Shaiya Bot ZS
Code: Select all
Fri May 29 09:36:45 2009 : ...omacro/scripts/zs_shaiya/classes/shortcuts/skill.lua:99: bad argument #1 to 'keyboardPress' ((null))
Fri May 29 09:36:45 2009 : Execution error: Runtime error
Re: Shaiya[US] - Shaiya Bot ZS
So I figured out MY problem. I forgot to put the slot number in for the 5th skill. That fixed everything and it's going smooth.
-
- Posts: 12
- Joined: Wed Feb 04, 2009 6:32 am
Re: Shaiya[US] - Shaiya Bot ZS
hey vvayinsane, I downloaded the new "gui" and "config" scripts you posted and applied it already, but I don't know what to do in order to bypass game guard. Was there already a new bypass that's already out?
-Thanks
-Thanks
Re: Shaiya[US] - Shaiya Bot ZS
Sorry everyone been very busy with Private Server stuff.
mem_text_message_offset is the address offset for the game message you see in the game console. Trade messages are also stored in this.
I believe the message is a Circular Queue data pattern.
mem_text_message_index_offset is the index that the current message is in (0-4) last time I checked.
They are used mainly to check whether a skill has been pulled off successfully or not.
You can search by not doing anything in the game, and wait till people talk in trade, then search for the first address that has the string "[Trade]". The index offset has a fixed difference from the mem_text_message_offset, so for the original values subtracting mem_text_message_offset and mem_text_message_index_offset will give you the difference I will hard code all that in, so it's easier in the future.
mem_text_message_entered_offset is for reading user entered text which is not necessary for the bots operation from what I remember.
mem_text_message_offset is the address offset for the game message you see in the game console. Trade messages are also stored in this.
I believe the message is a Circular Queue data pattern.
mem_text_message_index_offset is the index that the current message is in (0-4) last time I checked.
They are used mainly to check whether a skill has been pulled off successfully or not.
You can search by not doing anything in the game, and wait till people talk in trade, then search for the first address that has the string "[Trade]". The index offset has a fixed difference from the mem_text_message_offset, so for the original values subtracting mem_text_message_offset and mem_text_message_index_offset will give you the difference I will hard code all that in, so it's easier in the future.
mem_text_message_entered_offset is for reading user entered text which is not necessary for the bots operation from what I remember.
- Administrator
- Site Admin
- Posts: 5313
- Joined: Sat Jan 05, 2008 4:21 pm
Re: Shaiya[US] - Shaiya Bot ZS
I hope that's going well for you. You have permission to advertise your server here on these forums if you would like.Sorry everyone been very busy with Private Server stuff.
Re: Shaiya[US] - Shaiya Bot ZS
Im getting the spinning buffing and not targeting problem tryed everything swapping gui ect ect anyone got this working yet ????? if i can get it to target i should be okay tnx.
Re: Shaiya[US] - Shaiya Bot ZS
bah still no joy getting it to target
Who is online
Users browsing this forum: No registered users and 0 guests