23.05.2009, 21:48
I'm making a tutorial and need help with this issue.
This is what I have..
I know I didn't finish realeasing my togglecontrollable, but I got this error I want to fix first.
Quote:
C:\Users\Ethan\Desktop\samp02Xserver.win32\pawno\i nclude\cps.inc(140) : warning 208: function with tag result used before definition, forcing reparse C:\Users\Ethan\Desktop\samp02Xserver.win32\gamemod es\crp.pwn(3261) : error 028: invalid subscript (not an array or too many subscripts): "Tutorial" C:\Users\Ethan\Desktop\samp02Xserver.win32\gamemod es\crp.pwn(3261) : warning 215: expression has no effect C:\Users\Ethan\Desktop\samp02Xserver.win32\gamemod es\crp.pwn(3261) : error 001: expected token: ";", but found "]" C:\Users\Ethan\Desktop\samp02Xserver.win32\gamemod es\crp.pwn(3261) : error 029: invalid expression, assumed zero C:\Users\Ethan\Desktop\samp02Xserver.win32\gamemod es\crp.pwn(3261) : fatal error 107: too many error messages on one line |
Quote:
if(strcmp(cmd, "/Tutorial", true) == 0) { TogglePlayerControllable(playerid, 0); Tutorial[playerid] = 1; SetTimerEx("Tutorial", 1000, 1); if(Tutorial[playerid] == 1) { SendClientMessage(playerid,COLOR_YELLOW2,"[TUTORIAL:] BLAHBLAH??"); SendClientMessage(playerid,COLOR_YELLOW2,"[TUTORIAL:] BLEETBLEET"); SetPlayerPos(playerid, 974.0024,-1537.4017,73.0980); SetPlayerCameraPos(playerid, 974.0024,-1537.4017,73.0980); SetPlayerCameraLookAt(playerid, 1320.8724,-1409.4318,104.8676); SetPlayerInterior(playerid, 0); SetPlayerVirtualWorld(playerid,0); Tutorial[playerid] = 2; } else if(Tutorial[playerid] == 2) { SendClientMessage(playerid,COLOR_YELLOW2,"[TUTORIAL:] Message2??"); SendClientMessage(playerid,COLOR_YELLOW2,"[TUTORIAL:] Message2again??"); return 1; } } |