Need Help with Errors! - 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: Need Help with Errors! (
/showthread.php?tid=274356)
Need Help with Errors! -
Tigerbeast11 - 05.08.2011
Here is the filterscript:
http://pastebin.com/JNwtvTQW
Here are the errors:
Код:
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(173) : error 017: undefined symbol "dcmd_unfreezeall"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(174) : error 017: undefined symbol "dcmd_giveweapon"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(175) : error 017: undefined symbol "dcmd_god"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(176) : error 017: undefined symbol "dcmd_resetscores"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(177) : error 017: undefined symbol "dcmd_setlevel"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(178) : error 017: undefined symbol "dcmd_setskin"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(194) : error 017: undefined symbol "dcmd_givearmour"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(195) : error 017: undefined symbol "dcmd_setarmour"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(196) : error 017: undefined symbol "dcmd_armourall"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(197) : error 017: undefined symbol "dcmd_setammo"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(198) : error 017: undefined symbol "dcmd_setscore"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(199) : error 017: undefined symbol "dcmd_ip"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(200) : error 017: undefined symbol "dcmd_ping"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(201) : error 017: undefined symbol "dcmd_explode"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(202) : error 017: undefined symbol "dcmd_settime"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(203) : error 017: undefined symbol "dcmd_setalltime"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(204) : error 017: undefined symbol "dcmd_force"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(205) : error 017: undefined symbol "dcmd_setwanted"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(206) : error 017: undefined symbol "dcmd_setallwanted"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(207) : error 017: undefined symbol "dcmd_setworld"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(208) : error 017: undefined symbol "dcmd_setallworld"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(209) : error 017: undefined symbol "dcmd_setgravity"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(210) : error 017: undefined symbol "dcmd_xlock"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(211) : error 017: undefined symbol "dcmd_xunlock"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(212) : error 017: undefined symbol "dcmd_carcolor"
C:\Users\User\Documents\samp\filterscripts\XtremeAdmin2test.pwn(213) : error 017: undefined symbol "dcmd_gmx"
Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
26 Errors.
Please help me!!!!
AW: Need Help with Errors! -
Drebin - 05.08.2011
removed
Re: Need Help with Errors! -
Tigerbeast11 - 05.08.2011
What? Why?
Re: Need Help with Errors! -
taborda11 - 05.08.2011
I didnt find anything wrong in FS.
Re: Need Help with Errors! -
Tigerbeast11 - 05.08.2011
Neither did I, but it was going fine, until I pressed compile at one stage and it gave me that...
Re: Need Help with Errors! -
MadeMan - 05.08.2011
pawn Код:
dcmd_freezeall(playerid,params[]) {
#pragma unused params
if(IsPlayerCommandLevel(playerid,"freezeall")) {
for(new i = 0; i < MAX_PLAYERS; i++) if(IsPlayerConnected(i)) TogglePlayerControllable(i,false);
#pragma unused params
if(IsPlayerCommandLevel(playerid,"unfreezeall")) {
SendCommandMessageToAdmins(playerid,"UNFREEZEALL");
for(new i = 0; i < MAX_PLAYERS; i++) if(IsPlayerConnected(i)) TogglePlayerControllable(i,true);
new string[256],name[24]; GetPlayerName(playerid,name,24); format(string,256,"Administrator \"%s\" unfrozen everyone.",name); return SendClientMessage(playerid,yellow,string);
} else return SendLevelErrorMessage(playerid,"unfreezeall");
}
} // <------------------- HERE
Re: Need Help with Errors! -
Tigerbeast11 - 05.08.2011
Thank you sooo much!!!