17.11.2017, 19:34
Obrigado cara, nгo sabia sobre isso entгo acabei de criar um comando pequeno de test.
link com id das armas:https://sampwiki.blast.hk/wiki/Weapons
lembrando algumas nгo tem skill
Mudar a skill de um player especifico
Mudar a skill de todos de uma vez
link com id das armas:https://sampwiki.blast.hk/wiki/Weapons
lembrando algumas nгo tem skill
Mudar a skill de um player especifico
PHP код:
CMD:mudarskill(playerid, params[])
{
new id;
new SS[80];
new mudarskill;
new armaid;
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
if(sscanf(params, "udd",id,armaid,mudarskill)) return SendClientMessage(playerid,-1,"Use: /MudarSkill [Nome/ID] [Arma] [Quantidade]");
if(mudarskill > 100 ||mudarskill < 0) return SendClientMessage(playerid, -1,"Mбximo 100 minimo 0");
SetPlayerSkillLevel(id, armaid, mudarskill);
format(SS, sizeof(SS), "Vocк mudou a skill do %s para %d",name,mudarskill);
SendClientMessageToAll(0x4169E1,SS);
return 1;
}
PHP код:
CMD:setarskilldetodos(playerid, params[])
{
new mudarskill;
new armaid;
new SS[80];
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
for(new i=0; i<MAX_PLAYERS; i++)
{
SetPlayerSkillLevel(i, armaid, mudarskill);
}
if(sscanf(params, "udd",id,armaid,mudarskill)) return SendClientMessage(playerid,-1,"Use: /MudarSkill [Arma] [Quantidade]");
if(mudarskill > 100 ||mudarskill < 0) return SendClientMessage(playerid, -1,"Maximo 100 minimo 0");
format(SS, sizeof(SS), "O administrador(a) %s mudou a skill de todos para %i ",name,mudarskill);
SendClientMessageToAll(-1,SS);
return 1;
}