17.06.2010, 10:52
C:\Documents and Settings\alin\Desktop\PROD\filterscripts\Geo2.pwn( 23) : warning 204: symbol is assigned a value that is never used: "messages"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Warning.
lol?
heres my script : (filterscript)
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Warning.
lol?
heres my script : (filterscript)
Код:
// This is a comment // uncomment the line below if you want to write a filterscript //#define FILTERSCRIPT #include <a_samp> #if defined FILTERSCRIPT public OnFilterScriptInit() { print("\n--------------------------------------"); print(" Blank Filterscript by your name here"); print("--------------------------------------\n"); return 1; } #endif public OnPlayerText(playerid, text[]) { if(!strcmp(text,"sup sandy",true) || !strcmp(text,"sup sandy ?",true)) { new messages[][] = {"I'm fine","I'm bored now","I'm playing with my duck"}; /* etc */ } return 1; }