View previous topic :: View next topic |
Author |
Message |
Mortem Monkey

Joined: 19 Sep 2003 Posts: 19 Location: Deep in to the recesses of your mind.
|
Posted: Mon Oct 27, 2003 3:12 pm Post subject: Two things. |
|
|
I wrote this script :
script, lik, begin
if(check tag (2) then (showtextbox (2)
else (showtextbox (15)
end
First off are there any glarring errors with it? If so can somebody please tell me what I did wrong (in great detail). Second if you don't notice anything wrong just by looking please try to compile it.
I get this error message:
Error: in line 81 of script lik in C:\RPG creator\Crwonscripts.hss
script, lik, begin
script lik is missing end or )
Does that happen to any of you? It happens to me even if I change the name and number of the script. _________________ If you don't believe that God has a sense of humor then you explain the french! |
|
Back to top |
|
 |
Minnek Conjurer

Joined: 03 Jun 2003 Posts: 430 Location: Somewhere
|
Posted: Mon Oct 27, 2003 3:18 pm Post subject: |
|
|
Code: | script, lik, begin
if(check tag (2) then (showtextbox (2)
else (showtextbox (15)
end |
simple fix, just make it:
Code: | script, lik, begin
if(check tag (2)) then (showtextbox (2))
else (showtextbox (15))
end |
_________________ * SDHawk has joined #Minnek
SDHawk> AAAAAAAAAAAAAUUUUUUUUUGH
* SDHawk has left #Minnek (Leaving) |
|
Back to top |
|
 |
Setu_Firestorm Music Composer

Joined: 26 Mar 2003 Posts: 2566 Location: Holiday. FL
|
|
Back to top |
|
 |
|