17.02.2014, 01:31
Thank you !
But if I do this, as I said I got a lot of errors:
Line 2385:
Line 2386:
Line 2389:
Line 2391:
Line 2392:
Line 2393:
Line 2400:
Should I, every time replace nom by nom[24] ?
Thank you !
EDIT:
How could I do this ?
But if I do this, as I said I got a lot of errors:
Код:
Beta.pwn(2385) : error 033: array must be indexed (variable "nom") Beta.pwn(2386) : error 035: argument type mismatch (argument 1) Beta.pwn(2389) : error 035: argument type mismatch (argument 1) Beta.pwn(2391) : error 033: array must be indexed (variable "nom") Beta.pwn(2392) : error 033: array must be indexed (variable "nom") Beta.pwn(2393) : error 035: argument type mismatch (argument 1) Beta.pwn(2400) : error 035: argument type mismatch (argument 1)
Код:
if(playerid == nom) return SendClientMessage(playerid, Rouge, "Vous ne pouvez pas transferer d'argent а vous mкme.");
Код:
if(IsPlayerConnected(nom))
Код:
GetPlayerName(nom, joueurdestinataire, sizeof(joueurdestinataire));
Код:
pInfo[nom][Banque] += somme;
Код:
format(string, sizeof(string), "%s a transferй %d $ sur votre compte bancaire. Vous avez maintenant %d $ sur votre compte.", joueuremetteur, somme, pInfo[nom][Banque]);
Код:
SendClientMessage(nom, Jaune, string);
Код:
if(!IsPlayerConnected(nom))
Thank you !
EDIT:
How could I do this ?