hi
also bei mir funzt der bot EIG. perfect bis auf dass das er am schluss wenn er die quest animmt und sie wieder abgibt is er etwas zu schnell wenn ich hinbekommen würde das er etwas länger wartet würde er perfekt laufen
danke schonmal im voraus
Mfg
I figured out how to make it only do 1 run like I wanted.
I just want to know is their a way to make the script work so I can use a hotkey to run it each and every time? Or do I have to alt tab and execute it each and every time?
Also, how do I make it so it only does one loop for the run. I scroll down to this
$runstotal = 1 but it still starts the run over again.
$runstotal = 1
$runs = 0
While True
Select
Case $runstotal <> $runs
$runs = $runs + 1
_quest();
Case $runstotal = $runs
$runs = $runs - 27
EndSelect
WEnd
That is what's left of the script. I edited out every other thing so I can use it manually.
Thanks for the help that fixed it, sort of when i load into Melandu's it starts to ping straight away and this usually makes it miss ping the first 2 heros (shore and Stairs), as the map is not stationary when it is pinging. I have tried changing the figure's that you told me before, to higher numbers and it doesn't seem to have any effect, which numbers do i have to adjust now to delay the pinging once i have loaded in? (Btw the figures that i am fiddling with are on row 174)
Just one more thing when i load up the bot it doesn't always go to the Malandru's post, usually it goes to the NPC Kia, then runs to Devona, then back to Kia and then fianlly to Malandu's. Does anyone know how to fix this problem?
Thanx again
Thanks for the help that fixed it, sort of when i load into Melandu's it starts to ping straight away and this usually makes it miss ping the first 2 heros (shore and Stairs), as the map is not stationary when it is pinging. I have tried changing the figure's that you told me before, to higher numbers and it doesn't seem to have any effect, which numbers do i have to adjust now to delay the pinging once i have loaded in?
Just one more thing when i load up the bot it doesn't always go to the Malandru's post, usually it goes to the NPC Kia, then runs to Devona, then back to Kia and then fianlly to Malandu's. Does anyone know how to fix this problem?
Thanx again
It's supposed to do that so it knows where it is. If you look at the section of the script for where it zones, it runs to where the henchmen are, then selects the signpost going to melandru's.
Ok, Thank You, how do delay the time before it starts to ping the hero's, once it has loaded into Melandu's?
I changed the number in row 172 from 13000,13500 to 30000,30500 and it nearly fixes the problem. So i tried to make it higher and it doesnt do anything?
Hey Leute noch mal in Deutsch, ich hab Probleme mit dem Punkte einzahlen. Ich habe den ganzen Thread verfolgt komme aber leider nicht weiter. Wenn ich am PC sitze klappt es wunderbar nur sobald ich afk bin und laufen lasse klappt´s irgendwann nicht.
Ich sehe in Büdnis-Chat zahlen 312,MV oder so was und hänge im Fort Espenwald fest.
Wo dran könnte das liegen ?
In welchen Zeilen kann ich da noch was ändern ?
Wie kann ich den Chat evtl deaktivieren ?
Warum klappt´s manchmal und manchmal nicht ? Er läuft doch immer zum Ausgangsschild wendet dann zum NPC 1 dreht sich und läuft zum Einzahl-NPC...
dein prob ist wahrscheinlich das er bei 27 runs durch fehler noch keine 10000 pkt hat ---> d.h. er drückt einmal zu viel "enter"....
Quote:
Originally Posted by Gabba2
Ich habs so:
Code:
§runstotal = 26; 26
§runs = 0
While True
Select
Case §runstotal <> §runs
§runs = §runs + 1
_run();
_quest();
_reward();
_travel();
Case §runstotal = §runs
send("{h}")
sleep (400)
if Hex(PixelGetColor(867, 277),6) = "8F709A" then
send("{h}")
§runs = §runs - 26; 26
_exchange();
elseIf Hex(PixelGetColor(867, 277),6) <> "8F709A" then
§runs = §runs - 1
EndIf
EndSelect
wend
Die § halt durch $ ersetzen
Dabei öffnet er halt nach 26 Runs das H Fenster und checkt dann ob er 10K hat wenn ja machter halt den Einzahl Vorgang wenn nicht macht er noch einen Run und das so lange bis er 10K hat.
Wenn du willst, dass er wenn er keine 10K zu dem Zeitpunkt 2 Runs macht halt das letzte = - 1 in = - 2 ändern.
Mit dem Code ersetzt du halt den Teil unten im Script das sollteste schon finden.
Das "H" Fenster ordnest du dann genau wie die "U" Map an ziehst es aber noch ein klein wenig größer 1-2 Millimeter dann sollte das gehen.
Und halt das Fenster geöffnet haben in dem du die Kurzick Belohnungen siehst.
Can anyone tell me how I can make it so that it only does a single run? I notice I have to stop the script and manually hit dash a few times once it plants the third flag at the last spot. Otherwise it starts over again and I have a problem.
Also, is there a way to make a hotkey so if I keep the script running that I can hit one button and it'll start the script manually? Then that way I can just zone out, hit the button and it'll run the heroes once and I manually do the rest.
Ok, Thank You, how do delay the time before it starts to ping the hero's, once it has loaded into Melandu's?
I changed the number in row 172 from 13000,13500 to 30000,30500 and it nearly fixes the problem. So i tried to make it higher and it doesnt do anything?
the $rndnumber = Random(13000, 13500) part is timed just for the run from the henchies to the portal.
you added the sleep in the wrong section. add in an extra sleep after Func_quest()
while it would work, probably should just add it to where it should go.
Also, you do realize that you're having your script pause for 30 seconds. unless you have an extremely slow computer and/or connection, that's kind of overkill.
Quote:
Originally Posted by noobcracker99
Can anyone tell me how I can make it so that it only does a single run? I notice I have to stop the script and manually hit dash a few times once it plants the third flag at the last spot. Otherwise it starts over again and I have a problem.
Also, is there a way to make a hotkey so if I keep the script running that I can hit one button and it'll start the script manually? Then that way I can just zone out, hit the button and it'll run the heroes once and I manually do the rest.
sounds like you need to add more time to the sleep before it goes to accept the reward:
Add this on the next line after Func_reward()
Sleep(2000)
This will stop for another 2 seconds before taking the quest. if its still not long enough add more time.
the = Random(13000, 13500) part is timed just for the run from the henchies to the portal.
you added the sleep in the wrong section. add in an extra sleep after Func_quest()
while it would work, probably should just add it to where it should go.
Also, you do realize that you're having your script pause for 30 seconds. unless you have an extremely slow computer and/or connection, that's kind of overkill.
sounds like you need to add more time to the sleep before it goes to accept the reward:
Add this on the next line after Func_reward()
Sleep(2000)
This will stop for another 2 seconds before taking the quest. if its still not long enough add more time.
Actually I changed the script. I took out the zoning and everything except the placing hero flags.
All my script does now is when I turn it on it runs the heroes for me and what I want it to do is stop as soon as it's all done running the heroes.
But even when I put max runs as 1 it still runs twice.
Also, I want to add a hotkey so if I press a certain key it will start the script and run the heroes again instead of me alt tabbing each time to double click on the script.
HFFF TOT 11/30/2008 - GW Exploits, Hacks, Bots, Tools & Macros - 57 Replies OMG Hfff ist tot wie soll ich jetzt meine 40p in ner nacht einnehmen und meine 150k kurzick punkte XD
HFFF down was nun? 11/15/2008 - Guild Wars - 13 Replies Da Hfff ja jetzt nicht mehr funktioniert, wollte ich mich mal erkundigen, was ihr nun macht um schnell an viel Platin zu kommen.
Ob vllt. ein neuer Bot in Planung ist der wenigstens etwas an die Erträge
beim hfff Bot kommt.
Oder ob es sogar schon einen gibt :)...
mfg
Hfff Bot Help 09/01/2008 - GW Exploits, Hacks, Bots, Tools & Macros - 3 Replies i was just tryin to use the hfff bot and i set everything up but when i run the bot it doesnt even make it out the door it just talks to lucas and then gets stuck.
any help would be much appreciated. and i dont speak german so an english response would be great!
Looking For HFFF BOT. 03/30/2008 - Guild Wars - 3 Replies langaugre macht nicht ich haben einen Übersetzer aus: P. aber ich würden genießen, um einen HFFF Bot zu haben, dass ich meine benennen kann, das, ive andere versuchte sie nicht wie vorgesehen sie das keept ausarbeiteten, das falsche Tür durchläuft oder in Kreise nach cleary nach genauen Anweisungen umhergeht