About my Give all Commands ? - 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: About my Give all Commands ? (
/showthread.php?tid=482839)
About my Give all Commands ? -
donhu789 - 23.12.2013
pawn Код:
CMD:giveallgun(playerid, params[])
{
for(new i = 0; i < MAX_PLAYERS; i ++)
{
if(pInfo[playerid][pAdminLevel] >= 4)
{
new weapid, ammo;
if(sscanf(params,"dd", weapid, ammo)) return SendClientMessage(playerid, red,"[USAGE]: /giveallweapon [weapon] [ammo]");
if(IsValidWeapon(weapid))
{
if(IsPlayerConnected(i))
{
GivePlayerWeapon(i, weapid, ammo);
new str[150];
format(str, sizeof(str),"Administrator %s has given everyone %d ammo of weapon %d", PlayerName(playerid), ammo, weapid);
SendClientMessage(i, orange, str);
}
}
else return SendClientMessage(playerid, red,"[ADMIN]: You are not allowed to give this weapon!");
}
else return SendClientMessage(playerid, red,"[ADMIN]: You are not high enough level to use this command!");
}
return 1;
}
using Mysql and i compile this is said lose identifine help please +REP +REP
Re: About my Give all Commands ? - Emmet_ - 23.12.2013
Here:
pawn Код:
CMD:giveallgun(playerid, params[])
{
for(new i = 0; i < MAX_PLAYERS; i ++)
{
if(pInfo[playerid][pAdminLevel] >= 4)
{
new weapid, ammo;
if(sscanf(params,"dd", weapid, ammo)) return SendClientMessage(playerid, red,"[USAGE]: /giveallweapon [weapon] [ammo]");
if(IsValidWeapon(weapid))
{
if(IsPlayerConnected(i))
{
GivePlayerWeapon(i, weapid, ammo);
new str[150];
format(str, sizeof(str),"Administrator %s has given everyone %d ammo of weapon %d", PlayerName(playerid), ammo, weapid);
SendClientMessage(i, orange, str);
}
}
else return SendClientMessage(playerid, red,"[ADMIN]: You are not allowed to give this weapon!");
}
else return SendClientMessage(playerid, red,"[ADMIN]: You are not high enough level to use this command!");
}
return 1;
}
Re: About my Give all Commands ? -
donhu789 - 23.12.2013
oh my god
ty Emmet once again you helped me
in old time i was working on a Fucking Gamemode now my mind to MySQL so i kind dumb
DD
thanks for help