RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
Everything about my game operations are now perfect...but theres 1 more thing...

0 Members and 1 Guest are viewing this topic.

***
Rep:
Level 86
I've been getting a bit muddled and at 1 point lost patience lol. I can't get round making a running button using the shift button...

Could I have 2 things?

1) An explanation
2) A script?

This is for rpg maker 2003 btw.
« Last Edit: September 09, 2007, 05:36:38 PM by Ragnarok »

******
Revolution is not a bed of roses.
Rep:
Level 91
Project of the Month winner for July 2009
There are no scripts for 2k3.

***
Rep:
Level 86
sry. In all honesty, i assumed a script was something else (call me stupid, i don't mind)

I mean the event commands

***
Rep:
Level 88
Keep on Baggin'
I may remember seeing a guide about that stuff on a site years ago... (rpg2knet maybe, but their out of order) all I can recommend is that you Google 2k3 guides and hope for the best
Some friends mend.  Some friends depend.  Some friends lend.  Some friends send.  Friend.

*
Rep:
Level 97
2014 Most Unsung Member2014 Best RPG Maker User - Engine2013 Best RPG Maker User (Scripting)2012 Most Mature Member2012 Favorite Staff Member2012 Best RPG Maker User (Scripting)2012 Best MemberSecret Santa 2012 ParticipantProject of the Month winner for July 20092011 Best Use of Avatar and Signature Space2011 Best RPG Maker User (Scripting)2011 Most Mature Member2011 Favourite Staff Member2011 Best Veteran2010 Most Mature Member2010 Favourite Staff Member
I'm not going to give you a script, since it is really easy to do with events. All you need to do is make a common event and set it to parallel process. Inside the common event, place this:

Code: [Select]
Conditional Branch: Button <Shift> is being pressed (Actually, you assign Shift to a button by pressing F1 during test-play)
    Set Move Route: Player
       Change Speed: 5
Else
   Move Event: Player
       Change Speed: 4
End


You can add wait frames at the end if you feel any lag from it. There is a Double Tap Dash Button Event System in the Event Systems Database

If you need more help, don't hesitate to ask

Granted, I am using RMXP, but 2k3 wiwll have something similar, maybe instead of con. branches it would be Button Input Processing?