Page 1 of 1

Jumping randomly and Mounting.

Posted: Sat Sep 04, 2010 9:41 pm
by SlashAnon
Hello everyone. I was wondering if it was possible to randomly jump a few times while not in combat in between way points and also if it was possible to mount up after a certain amout of time without aggro or no target found. I did do a search on both topics and found an old post about the jumping and the code doesn't change anything. Help with this would be much appreciated! :D

Re: Jumping randomly and Mounting.

Posted: Sun Sep 05, 2010 6:33 am
by sturmbringer
jumping is for peeps with ADHD - i HATE it - sorry
but im going crazy by this idiots - jumping arround
all the time :(

Re: Jumping randomly and Mounting.

Posted: Mon Sep 06, 2010 5:08 am
by Starrider
me too, you get no bonus from jumping, so why?!

Re: Jumping randomly and Mounting.

Posted: Mon Sep 06, 2010 5:30 am
by swietlowka
because it looks more human, i wanted to ask about how to make it sometimes jump while not casting, bit somehow i forgot about it seems that now is my chance :D

Re: Jumping randomly and Mounting.

Posted: Wed Sep 08, 2010 6:48 am
by Starrider
I have seen one who has jumped all the time that it looked to crazy, I had to think about you and asked him if he has a jump-bot XD, but ist was a human player.

So it has faslified you argument that it looks like human, this guy looked serously unnormal XD

but i think random jumping is problematic, because what is if you harvest, fight or loot... :-P

Re: Jumping randomly and Mounting.

Posted: Wed Sep 08, 2010 9:49 am
by swietlowka
welcome to my world ;) i jump manually all the time because it makes me fell my character more somehow, maybe beacues i tend to be adhd(grown up version) anyway a random jump or at least on some waypoints would be nice to have :)

Re: Jumping randomly and Mounting.

Posted: Wed Sep 08, 2010 5:25 pm
by Administrator
You can randomly jump when reaching waypoints if you want. Just add it to the script for that waypoint.

Code: Select all

<waypoint x="0" z="0">
  if( math.random(100) > 50 ) then -- jump 50% of the time
    keyboardPress(key.VK_SPACE);
  end
</waypoint>

For the most part, jumping like that is unnatural. A popular WoW-bot made use of jumping to make it look more human-like, but actually made it very obvious that they were a bot because it would jump at times that no normal person would.

Re: Jumping randomly and Mounting.

Posted: Thu Sep 09, 2010 6:20 am
by Starrider
thanks he will have much fun with this code :D but I see i it like you. When somebody jumps on a flat area during he runs to the next waypoint looks suspicious.

Re: Jumping randomly and Mounting.

Posted: Mon Oct 10, 2011 8:21 pm
by emmanuel04
My problem is trying to make a move FORWARD while in a jump motion this is a test WP with two examples (BTW none works as i would like)

Code: Select all

<?xml version="1.0" encoding="utf-8"?><waypoints>
	<!-- #  1 --><waypoint x="-3495" z="4434" y="1" type="TRAVEL">	</waypoint>
	<!-- #  2 --><waypoint x="-3387" z="4351" y="0">
 keyboardPress( key.VK_W, key.VK_SPACE );
  
 </waypoint>
	<!-- #  3 --><waypoint x="-3251" z="4246" y="1">
if( math.random(100) > 50 ) then -- jump 50% of the time
    keyboardHold(key.VK_W);
    keyboardPress(key.VK_SPACE);
      end	</waypoint>
</waypoints>
I there way a way that my character could keep moving and could just jump could that work???

Re: Jumping randomly and Mounting.

Posted: Mon Oct 10, 2011 9:08 pm
by lisa
You need something like this.

Code: Select all

keyboardHold(settings.hotkeys.MOVE_FORWARD.key)
yrest(1000)
keyboardPress(settings.hotkeys.JUMP.key)
yrest(1000)
keyboardRelease(settings.hotkeys.MOVE_FORWARD.key)

Re: Jumping randomly and Mounting.

Posted: Mon Oct 10, 2011 10:55 pm
by ako ito
how about making emotion when someone looking at me or inspecting my equipt.. i want my character make emotion when someone looking my character, my character can can make /grimace or /laugh when looking at me?

Re: Jumping randomly and Mounting.

Posted: Mon Oct 10, 2011 11:45 pm
by lisa
That would involve constantly looking at every pawn within range and checking to see if they are targeting you.

then you would also need to add in a timer as you wouldn't want to constantly be doing /Laugh, that would look even worse then not doing anything.

It would be a semi big project.