1 eerror - 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)
+--- Thread: 1 eerror (
/showthread.php?tid=510868)
1 eerror -
UfsDev - 02.05.2014
Код:
CMD:jetpack(playerid, params[])
{
SetPlayerSpecialAction(playerid, 2);
SendClientMessage(playerid, COLOR_ORANGE, "Jetpack Spawned!");
return 1;
}
Код:
C:\Users\Khan_vb\Desktop\Tools & etc\XRS\gamemodes\XSE.pwn(10574) : error 021: symbol already defined: "cmd_jetpack"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Error.
Re: 1 eerror -
Dignity - 02.05.2014
Isn't it obvious? You already have "CMD:jetpack" defined. Remove it.
Re: 1 eerror -
awsomedude - 02.05.2014
It is saying you already have that command, either change the name or remove it.