26.09.2015, 15:54
Hey There
I have problem with my gamemode after compile
How To Fix It
this my code
I really need your help guys
___________________
I have problem with my gamemode after compile
Код HTML:
C:\Documents and Settings\Administrator\Desktop\GONDOG\yeah.pwn(3195) : error 027: invalid character constant C:\Documents and Settings\Administrator\Desktop\GONDOG\yeah.pwn(3195) : error 029: invalid expression, assumed zero C:\Documents and Settings\Administrator\Desktop\GONDOG\yeah.pwn(3195) : error 029: invalid expression, assumed zero C:\Documents and Settings\Administrator\Desktop\GONDOG\yeah.pwn(3195) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
this my code
Код:
new word[256],Index;while(Index < strlen(text)) { word = strtok(text,Index); if(CheckAdv(word)==1) { new i=strfind(text,word),j=i+strlen(word)-1; text[i++]='['; while(i<j) {text[i]='•';i++;} text[j]=']'; Kick(playerid); new string[128]; new pNamer[MAX_PLAYER_NAME]; GetPlayerName(playerid, pNamer, sizeof(pNamer)); format(string, sizeof(string), "{F20000}[SERVER]:- {FFFF00}%s[%d] {FFFFFF}Telah Di Kick/Banned {F20000}• {FFFF00}Alasan: IP Adverstiment", pNamer, playerid); SendClientMessageToAll(-1, string); } }
___________________