PDA

View Full Version : Why won't it work?



Olanan
08-03-2006, 07:03 AM
For some reason %c{labelhere} won't work. But I tested it and it worked in another script.




IF_1 goto %1

loopstart:
put wear yumi
pause 120
put exp
match spellup Your mind is as clear as a bell.
match spellup Your mind is fresh and clear.
match spellup Your mind is clear.
match spellup Your mind is muddled.
match loopstart Your mind is becoming numbed.
match loopstart Your mind is numbed.
match loopstart must rest!
matchwait


spellup:
put send 7 ASDADF
match stop You don't have that many points to transfer!
match spgo I could not find what you were referring to.
matchwait

spgo:
put 606
pause 4
put 601
goto gohunt


stop:
pause 180
goto spellup

gohunt:
counter set 0
put stand
put remove yumi
put go s
put s
put s
put go archway
goto STARTHUNT

huntdone:
put go arc
put n
put n
put n
put n
put sit
goto loopstart

StartHunt:
COUNTER SET 1
Goto 1Room

1Room:
save w
GOTO RoomCheck

2Room:
save w
GOTO RoomCheck

3Room:
save w
GOTO RoomCheck

4Room:
save s
GOTO RoomCheck

5Room:
save e
GOTO RoomCheck

6Room:
save sw
GOTO RoomCheck

7Room:
save se
GOTO RoomCheck

8Room:
save ne
GOTO RoomCheck

9Room:
save n
GOTO RoomCheck

10Room:
save n
GOTO RoomCheck

11Room:
save e
GOTO RoomCheck

12Room:
save e
GOTO RoomCheck

13Room:
save e
GOTO RoomCheck

14Room:
save sw
GOTO RoomCheck

15Room:
save go step
GOTO RoomCheck

16Room:
save s
GOTO RoomCheck

17Room:
save w
GOTO RoomCheck

18Room:
save ne
GOTO RoomCheck

19Room:
save go ste
GOTO RoomCheck

20Room:
save nw
GOTO RoomCheck

21Room:
save w
GOTO RoomCheck

22Room:
pause
goto expcheck

RoomCheck:
wait
COUNTER ADD 1
put %s
Match %cRoom Sorry, you may only type ahead 1 command.
goto Dawg

Dawg:
MATCH %cRoom Also here
MATCH LogOff GameMaster
MATCH LogOff Game Master
MATCH LogOff GameHost
MATCH LogOff Game Host
MATCH CritterCheck1 a lesser red orc
MATCH CritterCheck1 a mottled thrak
MATCH CritterCheck1 a lesser red orc,
MATCH CritterCheck1 a mottled thrak,
MATCH %cRoom Obvious
Match %cRoom Sorry, you may only type ahead 1 command.
MATCHWAIT

CritterCheck1:
pause
put look
MATCH %cRoom Also here
MATCH kill Obvious
MATCH %cRoom Obvious exits:
MATCHWAIT

kill:
put fire
Match %cRoom What were you referring to?
MATCH %cRoom could not find what you were referring to.
MATCH Dead1 is already dead.
MATCH Dead1 dies
MATCH Pause1 Roundtime:
MATCH Pause1 wait
MATCHWAIT

Pause1:
pause
goto kill

Dead1:
pause
put search thrak
put search orc
put stow right
put gat <----Alias
match dead1 ...wait
match dead1 ...wait 1 seconds.
match CritterCheck1 What were you referring to?
match CritterCheck1 I could not find what you were referring to.
waitfor You search
goto CritterCheck1
MATCHWAIT


expcheck:
put EXP
MATCH StartHunt Your mind is as clear as a bell.
MATCH StartHunt Your mind is fresh and clear.
MATCH StartHunt Your mind is clear.
MATCH StartHunt Your mind is muddled.
MATCH StartHunt Your mind is becoming numbed.
MATCH huntdone Your mind is numbed.
MATCH huntdone must rest!
MATCHWAIT

Artha
08-03-2006, 12:25 PM
If it's SF try putting a % after %c.

Latrinsorm
08-03-2006, 09:33 PM
One problem I see in Roomcheck is you have a match with no matchwait. Is that where it's bogging down?

Also, what Artha said.

TheEschaton
08-04-2006, 12:48 PM
I tend to put my % variables at the end. Because from the vantage point of this script, it might be looking for a variable named cRoom, and not a variable named c appended on the word "Room". I don't know how Wizard FE parses, but that might be your problem.

So, I would tend to go with:

goto Room%c

so the parser isn't confused....it knows Room is verbatim, and then to look for a variable named c.

-TheE-

mr dantes
08-08-2006, 07:22 PM
well, im not sure what you mean by "it won't work"...maybe provide a log of the script not working. looks like everything should run properly, except for 2 things: the match %croom under roomcheck will never register anything because there's no matchwait, so you can take the line out. incidentally, you can remove that line and the 2 lines under it (goto dawg and dawg) and the script doesn't change at all.

the other thing is you should never use the "wait" command, it's useless. im not sure if that area uses obvious paths or obvious exits, but change the wait to waitfor paths and it should make the whole thing run more smoothly.


it looks to me like the wait command is the only thing that could be screwing this script up, unless you're in stormfront like whatshisname said above.