Help.
#10

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:

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
Now ... Watch how was the command made in the moneygrub :

pawn Код:
if(strcmp(cmd, "/givecash", true) == 0)
And yours :

pawn Код:
if(!strcmp(cmdtext, "/test"))
We will make it like this :

pawn Код:
if(strcmp(cmdtext,"/test", true) ==0)
Also, why you left the space for color empty :

pawn Код:
SendClientMessage(playerid, , "Test"); // I fixed it though ...
Fixed version!
Reply


Messages In This Thread
Help. - by MrSolid95X - 17.06.2011, 02:59
Re: Help. - by Benjo - 17.06.2011, 04:24
Re: Help. - by MrSolid95X - 17.06.2011, 04:45
Re: Help. - by MrSolid95X - 17.06.2011, 14:40
Re : Help. - by Naruto_Emilio - 17.06.2011, 14:56
Re: Help. - by MrSolid95X - 17.06.2011, 16:50
Re: Help. - by MrSolid95X - 17.06.2011, 21:46
Re: Help. - by sleepysnowflake - 17.06.2011, 21:50
Re: Help. - by MrSolid95X - 17.06.2011, 21:55
Re: Help. - by sleepysnowflake - 17.06.2011, 22:07

Forum Jump:


Users browsing this thread: 4 Guest(s)