Jumping randomly and Mounting.

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
SlashAnon
Posts: 11
Joined: Wed Mar 17, 2010 4:41 pm

Jumping randomly and Mounting.

#1 Post by SlashAnon » Sat Sep 04, 2010 9:41 pm

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

sturmbringer
Posts: 9
Joined: Fri Nov 06, 2009 5:12 am

Re: Jumping randomly and Mounting.

#2 Post by sturmbringer » Sun Sep 05, 2010 6:33 am

jumping is for peeps with ADHD - i HATE it - sorry
but im going crazy by this idiots - jumping arround
all the time :(

Starrider
Posts: 164
Joined: Sat May 01, 2010 7:04 am
Location: Germany

Re: Jumping randomly and Mounting.

#3 Post by Starrider » Mon Sep 06, 2010 5:08 am

me too, you get no bonus from jumping, so why?!

swietlowka
Posts: 316
Joined: Wed Jun 16, 2010 8:16 am

Re: Jumping randomly and Mounting.

#4 Post by swietlowka » Mon Sep 06, 2010 5:30 am

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

Starrider
Posts: 164
Joined: Sat May 01, 2010 7:04 am
Location: Germany

Re: Jumping randomly and Mounting.

#5 Post by Starrider » Wed Sep 08, 2010 6:48 am

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

swietlowka
Posts: 316
Joined: Wed Jun 16, 2010 8:16 am

Re: Jumping randomly and Mounting.

#6 Post by swietlowka » Wed Sep 08, 2010 9:49 am

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 :)

User avatar
Administrator
Site Admin
Posts: 5307
Joined: Sat Jan 05, 2008 4:21 pm

Re: Jumping randomly and Mounting.

#7 Post by Administrator » Wed Sep 08, 2010 5:25 pm

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.

Starrider
Posts: 164
Joined: Sat May 01, 2010 7:04 am
Location: Germany

Re: Jumping randomly and Mounting.

#8 Post by Starrider » Thu Sep 09, 2010 6:20 am

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.

emmanuel04
Posts: 30
Joined: Wed Jun 01, 2011 6:07 am

Re: Jumping randomly and Mounting.

#9 Post by emmanuel04 » Mon Oct 10, 2011 8:21 pm

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???

User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Jumping randomly and Mounting.

#10 Post by lisa » Mon Oct 10, 2011 9:08 pm

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)
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual

ako ito
Posts: 61
Joined: Sat Sep 17, 2011 8:34 am

Re: Jumping randomly and Mounting.

#11 Post by ako ito » Mon Oct 10, 2011 10:55 pm

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?

User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Jumping randomly and Mounting.

#12 Post by lisa » Mon Oct 10, 2011 11:45 pm

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.
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual

Post Reply

Who is online

Users browsing this forum: Ahrefs [Bot] and 3 guests