17.06.2011, 22:07
Aha, had a quick look and it looks like you are getting erros ^^ When you get errors it means it FAILED to compile the .pwn file to .amx ^^. So all you need is to see the LINE where the error is and fix it ...
You will get it better form an example:
Now ... Watch how was the command made in the moneygrub :
And yours :
We will make it like this :
Also, why you left the space for color empty :
Fixed version!
You will get it better form an example:
pawn Код:
C:\Users\Blue\Desktop\Untitled.pwn(1009) : error 021: symbol already defined: "OnPlayerCommandText" //You can see the line in here is 1009. Simply go to that line and check what the error is about. No worry, this time i will fix them for you :P
pawn Код:
if(strcmp(cmd, "/givecash", true) == 0)
pawn Код:
if(!strcmp(cmdtext, "/test"))
pawn Код:
if(strcmp(cmdtext,"/test", true) ==0)
pawn Код:
SendClientMessage(playerid, , "Test"); // I fixed it though ...