spyroclaws
Jan 30 2012, 09:04 PM
If you played the legacy of goku 2 and 3 you might know what i mean. I need a script or tutorial of going into a door if your a certain level
For example Hero is Level 95 and the door needs him to be Level 100. Please Help me
RzrBladeMontage
Jan 31 2012, 12:09 AM
Moved to Event Emporium.
This could be done with events. Just create a Conditional branch that checks to see what level the player is, if its equal to, or over 100 then the door is open, if it's less than 100, the door is closed.
- Rzr
MissCoriel
Jan 31 2012, 01:09 AM
That's not hard
a parallel process that check your level and stores it
make a Conditional branch on the door
If VARLEVEL is greater or = to 100
> Do what you need to make the door thing work
>Else
>"You need to be at least level 100 to enter."
You don't really NEED a parallel process either
When the player interacts with the door the first thing it should do is a variable operation:
Plrlvl= Hero's level
Then use a conditional branch to determine whether the door opens or not.
Should look like this:
If Plrlvl = or is Greater than 100
>(door opens)
>Else
>Message: "You cannot enter this room until you are level 100"
spyroclaws
Jan 31 2012, 03:33 AM
Thanks Both of you. This is going to make my game 2x longer. (too bad I had an unexpected File Format

)
kayden997
Jan 31 2012, 10:38 AM
Always try to back up your games