Problema risolto Errore pawno.

Maskedx

Nuovo utente
Autore del topic
9 Luglio 2013
8
0
Miglior risposta
0
Salve a tutti, è da un pò di tempo che mi frulla per la testa di cominciare una gm. Siccome sono alle prime armi sto facendo pratica ed ho cominciato dal sistema registrazione (ovviamente non la prima volta).
Osservando attentamente il sistema di registrazione scaricato e uppato nella gm, ho notato che è abbastanza semplice e niente male, però sorge un problema.

C:\Users\A\Desktop\Prova ENB\gamemodes\NewGM.pwn(100) : error 017: undefined symbol "Giocatore"
C:\Users\A\Desktop\Prova ENB\gamemodes\NewGM.pwn(100) : warning 215: expression has no effect
C:\Users\A\Desktop\Prova ENB\gamemodes\NewGM.pwn(100) : error 001: expected token: ";", but found "]"
C:\Users\A\Desktop\Prova ENB\gamemodes\NewGM.pwn(100) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\Prova ENB\gamemodes\NewGM.pwn(100) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase

Potete spiegarmi cosa c'è di sbagliato precisamente? da quello che ho capito lo script è incompleto oppure c'è qualcosa che non serve. Ho visto vari esempi su internet dal SendClientMessage ad altre cose.
Es: Ciao(playerid)
Es corretto: SendClientMessage(playerid, COLORE(definito), "Benvenuto utente, lo staff di [Nome] ti augura una buona permanenza!");
P.s:
Perfavore, Entra oppure Registrati per vedere i Link!
potete trovare il sistema registrazione utilizzato.
 
Ultima modifica:
Riferimento: Errore pawno.


E' un errore semplice semplice che si rimedia subito :emoji_relieved:

Tutte le variabili le hai chiamate Giocatore:

Codice:
Perfavore, Entra oppure Registrati per vedere i codici!

Però se te ne sei accorto, in alto lo hai dichiarato come
Codice:
Perfavore, Entra oppure Registrati per vedere i codici!

Quindi grazie al ca che ti da errore per undefined symbol :emoji_relieved:

Per risolvere, rinomina la variabile con l'enum di fianco in Giocatore :emoji_slight_smile:
 
Riferimento: Errore pawno.

Ti sarei grato se potessi aiutarmi con questo (ho cambiato login/register system):

Riga:
ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_PASSWORD,""BIANCO"Login",""BIANCO"Inserisci la password per loggare:","Login","Annulla"); // 204

Errori:
C:\Users\A\Desktop\TDM GM\gamemodes\BF.pwn(204) : error 001: expected token: "-string end-", but found "-identifier-"
C:\Users\A\Desktop\TDM GM\gamemodes\BF.pwn(204) : warning 215: expression has no effect
C:\Users\A\Desktop\TDM GM\gamemodes\BF.pwn(204) : error 001: expected token: ";", but found "-string-"
C:\Users\A\Desktop\TDM GM\gamemodes\BF.pwn(204) : warning 215: expression has no effect
C:\Users\A\Desktop\TDM GM\gamemodes\BF.pwn(204) : error 001: expected token: "-string end-", but found "-identifier-"
C:\Users\A\Desktop\TDM GM\gamemodes\BF.pwn(204) : fatal error 107: too many error messages on one line

Se ho capito bene non è stata definita/inserita una virgola o punto e virgola, ma dove sbaglio? ho confrontato 100 volte con le righe successive e sembrerebbero uguali.
 
Riferimento: Errore pawno.

Ti sarei grato se potessi aiutarmi con questo (ho cambiato login/register system):

Riga:
ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_PASSWORD,""BIANCO"Login",""BIANCO"Inserisci la password per loggare:","Login","Annulla"); // 204

Errori:
C:\Users\A\Desktop\TDM GM\gamemodes\BF.pwn(204) : error 001: expected token: "-string end-", but found "-identifier-"
C:\Users\A\Desktop\TDM GM\gamemodes\BF.pwn(204) : warning 215: expression has no effect
C:\Users\A\Desktop\TDM GM\gamemodes\BF.pwn(204) : error 001: expected token: ";", but found "-string-"
C:\Users\A\Desktop\TDM GM\gamemodes\BF.pwn(204) : warning 215: expression has no effect
C:\Users\A\Desktop\TDM GM\gamemodes\BF.pwn(204) : error 001: expected token: "-string end-", but found "-identifier-"
C:\Users\A\Desktop\TDM GM\gamemodes\BF.pwn(204) : fatal error 107: too many error messages on one line

Se ho capito bene non è stata definita/inserita una virgola o punto e virgola, ma dove sbaglio? ho confrontato 100 volte con le righe successive e sembrerebbero uguali.

:emoji_relieved: mi potresti spiegare cosa è questo "BIANCO"? :emoji_relieved: se vuoi inserire un colore devi fare {codice html del colore}
 
Riferimento: Errore pawno.

Tralasciando quello che modificherò in seguito, qual'è l'errore?

new string[80],string1[80];
format(string,sizeof(string),"{FFFFFF}Login");
format(string1,sizeof(string1),"{FFFFFF}Inserisci la password per loggare:");
ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_PASSWORD,string, string1,"Login","Annulla"); // 204

Fai così e hai risolto.
 
Riferimento: Errore pawno.

new string[80],string1[80];
format(string,sizeof(string),"{FFFFFF}Login");
format(string1,sizeof(string1),"{FFFFFF}Inserisci la password per loggare:");
ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_PASSWORD,string, string1,"Login","Annulla"); // 204

Fai così e hai risolto.

Come dovrei risolvere?
Calcola che in OnPlayerConnect ho messo questo:
public OnPlayerConnect(playerid)
{

if(fexist(UserPath(playerid)))
{
INI_ParseFile(UserPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);
ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_PASSWORD,""0xFFFFFFAA"Login",""0xFFFFFFAA"Inserisci la password per loggare:","Login","Annulla");
}
else
{
ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_PASSWORD,""0xFFFFFFAA"Registrazione",""0xFFFFFFAA"Inserisci una password per registrarti:","Conferma","Annulla");

}
return 1;

}
 
Riferimento: Errore pawno.

Come dovrei risolvere?
Calcola che in OnPlayerConnect ho messo questo:
public OnPlayerConnect(playerid)
{

if(fexist(UserPath(playerid)))
{
INI_ParseFile(UserPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);
ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_PASSWORD,""0xFFFFFFAA"Login",""0xFFFFFFAA"Inserisci la password per loggare:","Login","Annulla");
}
else
{
ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_PASSWORD,""0xFFFFFFAA"Registrazione",""0xFFFFFFAA"Inserisci una password per registrarti:","Conferma","Annulla");

}
return 1;

}


Ma cosa vuol dire come dovrei risolvere? Ti ho scritto lo script, cosa c'è da non capire? :facepalm: metti questo:

Codice:
Perfavore, Entra oppure Registrati per vedere i codici!
Fai così e hai risolto.
 
Riferimento: Errore pawno.

Come dovrei risolvere?
Calcola che in OnPlayerConnect ho messo questo:
public OnPlayerConnect(playerid)
{

if(fexist(UserPath(playerid)))
{
INI_ParseFile(UserPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);
ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_PASSWORD,""0xFFFFFFAA"Login",""0xFFFFFFAA"Inserisci la password per loggare:","Login","Annulla");
}
else
{
ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_PASSWORD,""0xFFFFFFAA"Registrazione",""0xFFFFFFAA"Inserisci una password per registrarti:","Conferma","Annulla");

}
return 1;

}

Si ma sbagli completamente l'impostazione del showplayerdialog.
Il colore non va messo così!!

Devi fare

Codice:
Perfavore, Entra oppure Registrati per vedere i codici!
 
Riferimento: Errore pawno.

Ma cosa vuol dire come dovrei risolvere? Ti ho scritto lo script, cosa c'è da non capire? :facepalm: metti questo:

Codice:
Perfavore, Entra oppure Registrati per vedere i codici!
Fai così e hai risolto.

Prima di tutto tu stai calmo, sto cercando di imparare per bene. Seconda cosa se ti ho chiesto ancora una volta cosa dovevo fare è perchè volevo sapere se dovevo cancellare qualcosa oppure aggiungere solo quello che hai scritto.
Comunque giusto per la cronaca, ecco a te:
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(205) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : error 001: expected token: "-string end-", but found "-identifier-"
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : warning 215: expression has no effect
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : error 001: expected token: ";", but found "-string-"
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : warning 215: expression has no effect
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : error 001: expected token: "-string end-", but found "-identifier-"
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase


5 Errors.

A Ardaneus:
Ma infatti ho provato anche a fare come hai detto tu, ma mi da ugualmente quell'errore.
Cercando per internet vuol dire che non ho inserito qualche virgola oppure punto e virgola, non vedo cosa c'entri il colore. <.<
P.s: Ma posso sapere perchè ogni volta che clicco sulla barra dei colori o grassetto etc -- (parlo del forum) -- si apre qualche altra pagina tipo del LIDL, :emoji_relieved:?
 
Riferimento: Errore pawno.

Prima di tutto tu stai calmo, sto cercando di imparare per bene. Seconda cosa se ti ho chiesto ancora una volta cosa dovevo fare è perchè volevo sapere se dovevo cancellare qualcosa oppure aggiungere solo quello che hai scritto.
Comunque giusto per la cronaca, ecco a te:
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(205) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : error 001: expected token: "-string end-", but found "-identifier-"
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : warning 215: expression has no effect
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : error 001: expected token: ";", but found "-string-"
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : warning 215: expression has no effect
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : error 001: expected token: "-string end-", but found "-identifier-"
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase


5 Errors.

A Ardaneus:
Ma infatti ho provato anche a fare come hai detto tu, ma mi da ugualmente quell'errore.
Cercando per internet vuol dire che non ho inserito qualche virgola oppure punto e virgola, non vedo cosa c'entri il colore. <.<
P.s: Ma posso sapere perchè ogni volta che clicco sulla barra dei colori o grassetto etc -- (parlo del forum) -- si apre qualche altra pagina tipo del LIDL, :emoji_relieved:?


Prova a mettere in cima alla GameMode:
#define BIANCO "{FFFFFF}"

In fine, l'OnPlayerConnect da te citato non ha senso :emoji_relieved:
Codice:
Perfavore, Entra oppure Registrati per vedere i codici!

Comunque per aggiungere codici HTML nella Gamemode bisogna usare le parentesi graffe.

PS. Se non risolvi manda anche la riga 205 oltre alla 207.
 
Ultima modifica:
Riferimento: Errore pawno.

Prova a mettere in cima alla GameMode:
#define BIANCO "{FFFFFF}"

In fine, l'OnPlayerConnect da te citato non ha senso :emoji_relieved:
Codice:
Perfavore, Entra oppure Registrati per vedere i codici!

Comunque per aggiungere codici HTML nella Gamemode bisogna usare le parentesi graffe.
Lo so, ma non funziona nemmeno mettendolo tra le grasse e mettendo in cima alla gm quello che hai citato tu.

PS. Se non risolvi manda anche la riga 205 oltre alla 207.
Il sistema registrazione è questo:
Perfavore, Entra oppure Registrati per vedere i Link!
 
Riferimento: Errore pawno.

Prima di tutto tu stai calmo, sto cercando di imparare per bene. Seconda cosa se ti ho chiesto ancora una volta cosa dovevo fare è perchè volevo sapere se dovevo cancellare qualcosa oppure aggiungere solo quello che hai scritto.
Comunque giusto per la cronaca, ecco a te:
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(205) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : error 001: expected token: "-string end-", but found "-identifier-"
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : warning 215: expression has no effect
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : error 001: expected token: ";", but found "-string-"
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : warning 215: expression has no effect
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : error 001: expected token: "-string end-", but found "-identifier-"
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase


5 Errors.

A Ardaneus:
Ma infatti ho provato anche a fare come hai detto tu, ma mi da ugualmente quell'errore.
Cercando per internet vuol dire che non ho inserito qualche virgola oppure punto e virgola, non vedo cosa c'entri il colore. <.<
P.s: Ma posso sapere perchè ogni volta che clicco sulla barra dei colori o grassetto etc -- (parlo del forum) -- si apre qualche altra pagina tipo del LIDL, :emoji_relieved:?

Lo script è giusto, sicuramente è qualcosa che hai fatto tu precedente che ti da errore.
Prova a commentare quel codice e rifarlo come ti ho detto io, anche se metti i colori nel dialog, difficilmente appaiono, la maggior parte delle volte sono più le volte che non appare e che ti compaia il codice che poi non è HTML ma sono colori HEX. Ma tralasciando ciò, prova come ti ho detto.
 
Riferimento: Errore pawno.

Prima di tutto tu stai calmo, sto cercando di imparare per bene. Seconda cosa se ti ho chiesto ancora una volta cosa dovevo fare è perchè volevo sapere se dovevo cancellare qualcosa oppure aggiungere solo quello che hai scritto.
Comunque giusto per la cronaca, ecco a te:
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(205) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : error 001: expected token: "-string end-", but found "-identifier-"
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : warning 215: expression has no effect
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : error 001: expected token: ";", but found "-string-"
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : warning 215: expression has no effect
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : error 001: expected token: "-string end-", but found "-identifier-"
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(207) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase


5 Errors.

A Ardaneus:
Ma infatti ho provato anche a fare come hai detto tu, ma mi da ugualmente quell'errore.
Cercando per internet vuol dire che non ho inserito qualche virgola oppure punto e virgola, non vedo cosa c'entri il colore. <.<
P.s: Ma posso sapere perchè ogni volta che clicco sulla barra dei colori o grassetto etc -- (parlo del forum) -- si apre qualche altra pagina tipo del LIDL, :emoji_relieved:?

Si è normale che sono problemi con le virgole, perchè tu imposti male il Dialog, mettendo il colore in un modo che te lo sei inventato :emoji_relieved:
 
Riferimento: Errore pawno.

Lo script è giusto, sicuramente è qualcosa che hai fatto tu precedente che ti da errore.
Prova a commentare quel codice e rifarlo come ti ho detto io, anche se metti i colori nel dialog, difficilmente appaiono, la maggior parte delle volte sono più le volte che non appare e che ti compaia il codice che poi non è HTML ma sono colori HEX. Ma tralasciando ciò, prova come ti ho detto.

Ma potete essere più chiari per favore?
Ora inserisco il tuo script, ok, ma devo metterlo al posto di TUTTO l'OnPlayerConnect che avevo citato io?
Comunque se è così ho compilato, poi mi ha dato un secondo errore.
In poche parole io avevo messo che quando un player si collega o si scollegava dal server appariva un messaggio a tutti in cui appunto il player si scolleva o collegava.
Ok, dopo aver messo il tuo script non ho capito cosa diamine voleva dal mio script, però pazienza, fa niente, ho cancellato il mio ed ora guarda cosa esce:
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(222) : warning 225: unreachable code
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(222) : warning 217: loose indentation
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(222) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(222) : error 004: function "S@@_OnPlayerSpawn" is not implemented
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(256) : error 017: undefined symbol "GREY"
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(277) : warning 225: unreachable code
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(277) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(277) : error 004: function "S@@_OnPlayerDeath" is not implemented
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(280) : error 017: undefined symbol "killerid"
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(281) : error 017: undefined symbol "killerid"
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(282) : error 017: undefined symbol "killerid"
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(287) : warning 225: unreachable code
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(287) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(287) : error 004: function "S@@_OnVehicleSpawn" is not implemented
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(292) : warning 225: unreachable code
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(292) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(292) : error 004: function "S@@_OnVehicleDeath" is not implemented
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(297) : warning 225: unreachable code
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(297) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(297) : error 004: function "S@@_OnPlayerText" is not implemented
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(302) : warning 225: unreachable code
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(302) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(302) : error 004: function "S@@_OnPlayerCommandText" is not implemented
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(307) : warning 225: unreachable code
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(307) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(307) : error 004: function "S@@_OnPlayerEnterVehicle" is not implemented
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(312) : warning 225: unreachable code
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(312) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(312) : error 004: function "S@@_OnPlayerExitVehicle" is not implemented
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(317) : warning 225: unreachable code
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(317) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(317) : error 004: function "S@@_OnPlayerStateChange" is not implemented
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(322) : warning 225: unreachable code
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(322) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(322) : error 004: function "S@@_OnPlayerEnterCheckpoint" is not implemented
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(328) : warning 225: unreachable code
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(328) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(328) : error 004: function "S@@_OnPlayerLeaveCheckpoint" is not implemented

Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase


26 Errors.
A faccie ro cazz, lol!
 
Riferimento: Errore pawno.

Ma potete essere più chiari per favore?
Ora inserisco il tuo script, ok, ma devo metterlo al posto di TUTTO l'OnPlayerConnect che avevo citato io?
Comunque se è così ho compilato, poi mi ha dato un secondo errore.
In poche parole io avevo messo che quando un player si collega o si scollegava dal server appariva un messaggio a tutti in cui appunto il player si scolleva o collegava.
Ok, dopo aver messo il tuo script non ho capito cosa diamine voleva dal mio script, però pazienza, fa niente, ho cancellato il mio ed ora guarda cosa esce:
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(222) : warning 225: unreachable code
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(222) : warning 217: loose indentation
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(222) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(222) : error 004: function "S@@_OnPlayerSpawn" is not implemented
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(256) : error 017: undefined symbol "GREY"
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(277) : warning 225: unreachable code
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(277) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(277) : error 004: function "S@@_OnPlayerDeath" is not implemented
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(280) : error 017: undefined symbol "killerid"
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(281) : error 017: undefined symbol "killerid"
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(282) : error 017: undefined symbol "killerid"
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(287) : warning 225: unreachable code
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(287) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(287) : error 004: function "S@@_OnVehicleSpawn" is not implemented
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(292) : warning 225: unreachable code
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(292) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(292) : error 004: function "S@@_OnVehicleDeath" is not implemented
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(297) : warning 225: unreachable code
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(297) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(297) : error 004: function "S@@_OnPlayerText" is not implemented
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(302) : warning 225: unreachable code
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(302) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(302) : error 004: function "S@@_OnPlayerCommandText" is not implemented
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(307) : warning 225: unreachable code
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(307) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(307) : error 004: function "S@@_OnPlayerEnterVehicle" is not implemented
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(312) : warning 225: unreachable code
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(312) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(312) : error 004: function "S@@_OnPlayerExitVehicle" is not implemented
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(317) : warning 225: unreachable code
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(317) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(317) : error 004: function "S@@_OnPlayerStateChange" is not implemented
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(322) : warning 225: unreachable code
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(322) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(322) : error 004: function "S@@_OnPlayerEnterCheckpoint" is not implemented
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(328) : warning 225: unreachable code
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(328) : error 029: invalid expression, assumed zero
C:\Users\A\Desktop\TDM GM\gamemodes\AZZ.pwn(328) : error 004: function "S@@_OnPlayerLeaveCheckpoint" is not implemented

Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase


26 Errors.
A faccie ro cazz, lol!

Sono errori dovuto alla mancanza di qualche graffa
 
Riferimento: Errore pawno.

Sono errori dovuto alla mancanza di qualche graffa

Esatto, sicuramente avrai tolto il tuo script ma hai lasciato qualche cosa non chiuso.
Di certo non dipende dal mio script ;) Comunque più chiari di così, spiegami come volevi fare esattamente.
 
Riferimento: Errore pawno.

Le risposte dovute ti sono state date, sposto e rinomino come problema risolto ^^