I have got some questions, because I work with GWCA since this week.
1.How I can get the id for the function: Cmd$(CA_DIALOG, id) --> Kilroy Quest
Only autoIT: I do it with MouseClick( x, y)
2.How I can attack my target with a Skill from my Skillbar?
Only autoIT: I do it with ControlSend(“Guild Wars”,””,””, “{3}”)
My Char. Take a nearest target automatically and active his Skill 3 in the Skillbar.
If I use
…
$SKILL_MegaDmg = 3
…
Cmd($CA_USESKILLBARSKILL, $SKILL_MegaDmg)
my Char do nothing.
I hope you understand my description, because normally I don’t use the english language.
Have anyone small examples for GWCA witch can show me some solutions? I don’t understand the examples scripts like Backbreaker Bot or Raptor Bot.
Thanks.
Hey, I'll try to answer your question as well as possible
Quote:
Originally Posted by Ultra Die
1.How I can get the id for the function: Cmd$(CA_DIALOG, id) --> Kilroy Quest
Only autoIT: I do it with MouseClick( x, y)
Associated with the $CA_Dialog command is the $CA_GetLastDialogId command. To use this in conjunction you may want to use the GWCA Commander, so start it, select the $CA_GetLastDialogId command and now switch window to Guild Wars. Now press the dialog option that you wish to get the id of and jump back to the GWCA Commander window. Press Send & Receive and the dialog id you just pressed will appear! Use this in your script.
Quote:
Originally Posted by Ultra Die
2.How I can attack my target with a Skill from my Skillbar?
Only autoIT: I do it with ControlSend(“Guild Wars”,””,””, “{3}”)
My Char. Take a nearest target automatically and active his Skill 3 in the Skillbar.
If I use
…
$SKILL_MegaDmg = 3
…
Cmd($CA_USESKILLBARSKILL, $SKILL_MegaDmg)
my Char do nothing.
I'll assume that you want to target an enemy with your skill.
Use CmdCB($CA_GetNearestAliveEnemyToAgent, -2) to get the id of nearest agent and then do Cmd($CA_UseSkillbarSkill, $SKILL_MegaDmg, $cbVar[0]).
I hope you've taken a look at the First Time User Guide to get a brief idea of how to use GWCA when making your scripts!
Do you know the GWCA funktion, witch send a massage in the guild wars chat? If i remember there were a discriktion in the officel forum, but the forum is closed.
there are two ways
1. call the game func directly using autoit (i think you meant this one, but can´t remember how it worked, ask Harboe or ACB)
2. write a new func in gwca source code with the basic of i think /resign
and then call it through autoit
[HELP]Understanding Client DC 04/11/2010 - Dekaron Private Server - 0 Replies as you guys know, i rarely come on here asking questions about stuff, but after days of searching, trial and error, pulling my hair out, etc, i cant figure out how to relate my findings with a fix.
and what are my findings?
as most p-servers do, i have what at first glance appears to be "random" client disconnects, they can/have/will be associated with skills, effects, animation etc. but pinpointing the exact reason why a client DC's is why im making this post, hopefully one of the more...
PServer Making and Understanding commands for beginners (allowed?) 07/09/2009 - Runescape Private Server - 16 Replies I got no idea if this is allowed if it isn't please delete this post!
Getting down the basics of commands
Ok commands will most of the time will be like this
else if (command.startsWith("NAME") && playerRights >= PLAYERRIGHTS)
Now if you don't have a clue what player rights is and what it means
[PSU] p-machinery: understanding and using 10/29/2006 - General Gaming Discussion - 0 Replies Remember the PETE (robot) in your hostal? It's the PM allow you to used the
warehouse, synthesis, and you can even raise it to be stronger, so that you
can team up with it.
#- Warehouse
- This function allow you to move and manage the inventory items. And you
will be able to take them out anytime.
#- Raise PM
- Under P-Machinary menu, select "Present an item" and select the item
Help understanding some ASM 01/18/2006 - General Coding - 0 Replies I've collected the next batch of stupid questions i hope someone could help me shed some light on.
Basicly im trying to enterpret some very helloworld'ish basic code written in c++ code(vs2005, console app).
http://www.geocities.com/iamasciiart/hellow.JPG
Truth be told, im fiddling with some codeinjection, evaluating different approaches, but i figure i'd get a little better at reading asm first.
The idea of this statement "cout<<"address :"<<IAmMethodOne<<endl;" was to print the...