dcmd? - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: dcmd? (
/showthread.php?tid=97449)
dcmd? -
Deat_Itself - 14.09.2009
C:\Users\Yousaf\Desktop\gamemodes\lvdm.pwn(143

: warning 203: symbol is never used: "dcmd_skin"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Warning.
can anyone fix that bug
Thanks
Re: dcmd? -
Correlli - 14.09.2009
It means you didn't added the command to OnPlayerCommandText callback.
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
dcmd(skin, 4, cmdtext);
return 0;
}
Re: dcmd? -
Deat_Itself - 15.09.2009
k btw thanks both of you