Zelaron Gaming Forum  
Stats Arcade Portal Forum FAQ Community Calendar Today's Posts Search
Go Back   Zelaron Gaming Forum > Zelaron Gaming > RPGMaker

 
 
Thread Tools Display Modes

 
[RMBleh] Hey can someone help me?
Reply
Posted 2008-04-27, 04:19 PM
Well, i need some help with making an event timer.

what it is, i need my char to get from one side to the temple to the other in a set amount of time... And i need a timer that, when it runs out its game over. Can you tell me how please? i will be very grateful
Old
Profile PM WWW Search
Tyrix is neither ape nor machine; has so far settled for the in-betweenTyrix is neither ape nor machine; has so far settled for the in-between
 
Tyrix
 



 
Reply
Posted 2008-04-28, 06:51 AM in reply to Tyrix's post "[RMBleh] Hey can someone help me?"
Tyrix said:
Well, i need some help with making an event timer.

what it is, i need my char to get from one side to the temple to the other in a set amount of time... And i need a timer that, when it runs out its game over. Can you tell me how please? i will be very grateful
What RPG Maker version are you using?
 
Work List
疲れていますから 寝むってありますね。 むずかしいです。 また、ケーキ屋で ケーキを食べていました。

I've considered being a translator, but I dunno. It feels like a lot of work. If someone gets angry then I have to deal with it, you know? I'd rather just relax.

 
Speed Test
 
Favorite Anime/Manga
#01 Clannad ~After Story~
#02 Trigun {Maximum}
#03 Koi Kaze
#04 Berserk
#05 Outlaw Star
#06 Slayers
#07 Desert Punk
#08 Spirited Away
#09 Fullmetal Alchemist
#10 Shakugan no Shana
#11 Death Note
#12 FLCL
#13 Tokyo Magnitude 8.0
#14 Toradora
#15 Gunslinger Girl

 
Anime List

Last edited by Goodlookinguy; 2008-04-28 at 06:56 AM.
Old
Profile PM WWW Search
Goodlookinguy seldom sees opportunities until they cease to beGoodlookinguy seldom sees opportunities until they cease to beGoodlookinguy seldom sees opportunities until they cease to beGoodlookinguy seldom sees opportunities until they cease to be
 
 
Goodlookinguy
 



 
Reply
Posted 2008-04-28, 07:46 AM in reply to Goodlookinguy's post starting "What RPG Maker version are you using?"
Do tell, but it no longer matters. I'm guessing your using either RM2k3, XP, or VX. If 2000, then I have to install it sense I, for some odd reason, haven't installed it on my laptop.

---------
I am going to write out how a code would look when set as a code, not individual instructions on building it, unless you request that I do so. In order for me to do write those instructions step by step I need you to specify the RPG Maker version your using. (95, 2000, 2003, XP, VX).


Example of layout of code

Code:
EVENT 001 <== Event Name
-------- <== Break (Everything Below this needs to be made)
<>Message: Text  <== What actually needs to be made.
RPG Maker VX Instructions

PHP Code:
# File Begins Timer and Sets In Motion EVN 003 
Code:
EVN 001
--------
@>Comment: <!-- Code Begin -->
@>Text: -, -, Dark, Middle
 :	: You have 5 seconds to reach the other side.
@>Control Timer: Startup (0 min 5 sec.)
@>Control Switches: [0001: Define Time] = ON
@>
PHP Code:
# This Code Stops the Timer and Prevents EVN 003 from Executing 
Code:
EVN 002
--------
@>Control Timer: Stop
@>Control Switches: [0001: Define Time] = OFF
@>
PHP Code:
// IMPORTANT: Set "Trigger" to "Parallel Process". 
// IMPORTANT: Set Switch "0001:Define Time" to checked
// IMPORTANT: Hide the Event so that the player can't touch it
# Event Handles Timer and togles Game Over 
Code:
EVN 003
--------
@>Control Variables: [0001:Timer] = Timer
@>Conditional Branch: Variable [0001:Timer] == 0
	@>Game Over
	@>
 :	Branch End
@>

RPG Maker XP Instructions

PHP Code:
# File Begins Timer and Sets In Motion EVN 003 
Code:
EVN 001
--------
@>Comment: <!-- Code Begin -->
@>Text: You have 5 seconds to reach the
 :	: other side.
@>Control Timer: Startup (0 min. 5 sec.)
@>Control Switches: [0001: Define Time] = ON
@>
PHP Code:
# This Code Stops the Timer and Prevents EVN 003 from Executing 
Code:
EVN 002
--------
@>Control Timer: Stop
@>Control Switches: [0001: Define Time] = OFF
@>
PHP Code:
// IMPORTANT: Set "Trigger" to "Parallel Process". 
// IMPORTANT: Set Switch "0001:Define Time" to checked
// IMPORTANT: Hide the Event so that the player can't touch it
# Event Handles Timer and togles Game Over 
Code:
EVN 003
--------
@>Control Variables: [0001:Timer] = Timer
@>Conditional Branch: Variable [0001:Timer] == 0
  @>Game Over
  @>
 : Branch End
@>

RPG Maker 2003

PHP Code:
# File Begins Timer and Sets In Motion EVN 003 
Code:
EVN 001
--------
<>Comment: <!-- Code Begin -->
<>Message: You have 5 seconds to reach the
:	other side.
<>Timer 1 Operation: Set, 0M 05S
<>Timer 1 Operation: Start
<>Switch Operation: [0001: Define Time] ON
<>
PHP Code:
# This Code Stops the Timer and Prevents EVN 003 from Executing 
Code:
EVN 002
--------
<>Timer 1 Operation: Stop
<>Switch Operation: [0001:Define Time] OFF
<>
PHP Code:
// IMPORTANT: Set "Trigger Condition" to "Parallel Process". 
// IMPORTANT: Set Switch "0001:Define Time" to checked
// IMPORTANT: Hide the Event so that the player can't touch it
# Event Handles Timer and togles Game Over 
Code:
EVN 003
--------
<>Variable Oper: [0001:Timer] Set, Timer 1 Seconds Left
<>Branch if Var: [0001:Timer] is 0
	<>Game Over
	<>
: End
<>
 
Work List
疲れていますから 寝むってありますね。 むずかしいです。 また、ケーキ屋で ケーキを食べていました。

I've considered being a translator, but I dunno. It feels like a lot of work. If someone gets angry then I have to deal with it, you know? I'd rather just relax.

 
Speed Test
 
Favorite Anime/Manga
#01 Clannad ~After Story~
#02 Trigun {Maximum}
#03 Koi Kaze
#04 Berserk
#05 Outlaw Star
#06 Slayers
#07 Desert Punk
#08 Spirited Away
#09 Fullmetal Alchemist
#10 Shakugan no Shana
#11 Death Note
#12 FLCL
#13 Tokyo Magnitude 8.0
#14 Toradora
#15 Gunslinger Girl

 
Anime List

Last edited by Goodlookinguy; 2008-05-31 at 10:42 PM.
Old
Profile PM WWW Search
Goodlookinguy seldom sees opportunities until they cease to beGoodlookinguy seldom sees opportunities until they cease to beGoodlookinguy seldom sees opportunities until they cease to beGoodlookinguy seldom sees opportunities until they cease to be
 
 
Goodlookinguy
 



 
Reply
Posted 2008-04-29, 07:26 AM in reply to Goodlookinguy's post starting "Do tell, but it no longer matters. I'm..."
Hey Lenny, this should be added to the list sticked guides.

A lot of people are probably wondering how to go about making a timer for a castle and what not in their games for RM2k3-VX.
 
Work List
疲れていますから 寝むってありますね。 むずかしいです。 また、ケーキ屋で ケーキを食べていました。

I've considered being a translator, but I dunno. It feels like a lot of work. If someone gets angry then I have to deal with it, you know? I'd rather just relax.

 
Speed Test
 
Favorite Anime/Manga
#01 Clannad ~After Story~
#02 Trigun {Maximum}
#03 Koi Kaze
#04 Berserk
#05 Outlaw Star
#06 Slayers
#07 Desert Punk
#08 Spirited Away
#09 Fullmetal Alchemist
#10 Shakugan no Shana
#11 Death Note
#12 FLCL
#13 Tokyo Magnitude 8.0
#14 Toradora
#15 Gunslinger Girl

 
Anime List
Old
Profile PM WWW Search
Goodlookinguy seldom sees opportunities until they cease to beGoodlookinguy seldom sees opportunities until they cease to beGoodlookinguy seldom sees opportunities until they cease to beGoodlookinguy seldom sees opportunities until they cease to be
 
 
Goodlookinguy
 
 

Bookmarks

« Previous Thread | Next Thread »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

Posting Rules [Forum Rules]
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Hey itz Tha Cola (IM BACK) Tha Cola General Gaming 7 2007-03-31 07:27 PM
Lol, too many posts tacoX General Discussion 14 2002-02-23 04:19 PM


All times are GMT -6. The time now is 03:45 AM.
'Synthesis 2' vBulletin 3.x styles and 'x79' derivative
by WetWired the Unbound and Chruser
Copyright ©2002-2008 zelaron.com
Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
This site is best seen with your eyes open.