What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

daffy82

Member
Joined
Apr 29, 2014
Messages
129
I just learned to do my own very basic grinding profiles and I was wondering if it was a good idea to farm instances like dungeons/adventures and expeditions. There would be no one to report you. But I dont know if creatures repawns in those?

Where is it a good place to farm? The map has to be fairly flat for the bot not to get stuck in my experience. It sometimes gets stuck behind a fence ect. Maybe it could help to make the bot do randoms jumps? This could be done with AHK but can it be done inside the bot?
 
AHK is pretty serious and will eventually get you banned like me a year ago
 
AHK is pretty serious and will eventually get you banned like me a year ago
I use this script:

~F::
SendInput {F8} ;vacuum loot
SendInput {F10} ;comm
SendInput {F6} ;quest item
return

ANd then I use Jitbit Macro Recorder.
 
AHK is pretty serious and will eventually get you banned like me a year ago
I use this script:

~F::
SendInput {F8} ;vacuum loot
SendInput {F10} ;comm
SendInput {F6} ;quest item
return

ANd then I use Jitbit Macro Recorder.

I think you´re talking about diffrent things here.
AHK can be used for all sorts of injections of DLL´s and a bunch of other things that surely should set off the possible anti-*****ing software in wildstar.
However, AHK can be used to automate keypresses aswell, which shouldnt be a problem.

How you would make a working script using just keypresses for farming instances is almost impossible to imagine, i cant see a way it would work reliably.
And i would strongly disagree with the plan to use AHK to inject or read memory from wildstar since the possible anti-*****ing software would pick it up.
 
I think you misunderstood me.

I am not looking for at AHK script - I was asking if it would be a good idea to farm instances.

The AHK part was only to make the bot jump every 10secs so it would'nt get stuck :)
I am using the bot to farm not AHK
 
AHK is pretty serious and will eventually get you banned like me a year ago
I use this script:

~F::
SendInput {F8} ;vacuum loot
SendInput {F10} ;comm
SendInput {F6} ;quest item
return

ANd then I use Jitbit Macro Recorder.
I think you misunderstood me.

I am not looking for at AHK script - I was asking if it would be a good idea to farm instances.

The AHK part was only to make the bot jump every 10secs so it would'nt get stuck :)
I am using the bot to farm not AHK

Yupp, misunderstood you there.
Would be nice to hear from Ptfock how he used AHK thou, if he did some serious shit with it or just some keypresses.
Im currently using AHK to smash alot of buttons at the same time so i can rest my fingers...
 
talking of expeditions, creatures dont respawn in a way that you would stay in there and farm them.
You want to leave and then join a new one to make them respawn.
However i wouldnt excessively open new instances all day, that might get you flagged.
So if you want to do that i would finish the instance.
Loot seems to be the same as outside, tho some few mobs dont give xp or loot, but you get that bonus stuff at the end.

i never used the profile bot before. I tried the MoveWithin function and it seemed to just move me in a straight line
inside expeditions. So i assume the instances arent meshed ? You can always just move to coordinates tho.

You can write a plugin that jumps at random times or detect if you get stuck.
you can do anything for that matter with plugins.
you probably can do that with profile tags ? condition: 10s passed, not in combat Do: jump
certainly with writing your own tag.

i wouldnt flag you for running ahk (because too many ppl use it for reasons they dont ban)
but maybe add a random delay after each btn press,
for when they profile you server side. (which they dont because they are poor imo)
reading memory or injecting is a diffrent level.

SendInput has no internal delay; you need to add manually
Code:
~F::
SendInput {F8} ;vacuum loot
Random,r,100,300
Sleep r
SendInput {F10} ;comm
Random,r,100,300
Sleep r
SendInput {F6} ;quest item
Random,r,100,300
Sleep r
return
 
Last edited:
Back
Top