View previous topic :: View next topic |
Author |
Message |
Xerian The one and only in all

Joined: 21 Jul 2003 Posts: 59
|
Posted: Sat Aug 16, 2003 6:42 am Post subject: Load Game Script.... |
|
|
The problem I'm having is that the part with the setting the battle mode and HP and MP won't work. It works when I run it as a normal plotscript but when I attempt to load game it won't work even though the tag is on. I've tried doing an autonumber script also but that didn't work either. What am I doing wrong?
script, Speedup, begin
if (check tag (tag: Slept at Housings))
then, begin
set variable(vehicle X,NPC X(5))
set variable(vehicle Y,NPC Y(5))
set variable(used vehicle, true)
set variable(other vehicle X,NPC X(6))
set variable(other vehicle Y,NPC Y(6))
set variable(used other vehicle, true)
if (check tag (tag: Normal Skill))
then, begin
set battle wait mode (off)
set no HP level up restore (on)
set no MP level up restore (on)
end
end
end _________________ OHR dies hard. |
|
Back to top |
|
 |
sephy99
Joined: 06 Aug 2003 Posts: 43
|
Posted: Sat Aug 16, 2003 7:12 am Post subject: |
|
|
I seriously doubt that this is the problem, but is the second if statement meant to be inside the first one, because the way you have the ends set up it runs the first if statement then the second one within it, so that if the first statement is not true then the second one never even happens. If you don't want this to happen then simply put one of the ends before the second if statement, otherwise... I can't help. |
|
Back to top |
|
 |
Bob the Hamster OHRRPGCE Developer

Joined: 22 Feb 2003 Posts: 2526 Location: Hamster Republic (Southern California Enclave)
|
Posted: Sat Aug 16, 2003 8:16 am Post subject: Load game script stored in save games |
|
|
The load game script is stored inside the save games. That means if you change from one load game script to another, or set a load game script where there was not one before, you must play from the beginning, rather than using your old saved games. |
|
Back to top |
|
 |
Xerian The one and only in all

Joined: 21 Jul 2003 Posts: 59
|
Posted: Sun Aug 17, 2003 6:17 am Post subject: |
|
|
Well I finally got that fixed. Thanks again guys  _________________ OHR dies hard. |
|
Back to top |
|
 |
|