how give random player weapon?
#1

how can i give for random player which the system choosing auto?
Reply
#2

You got any system to give any player a weapon ?

If not then take this

pawn Код:
dcmd_giveweapon(playerid,params[])
{

        new Index;
        new tmp[256];  tmp  = strtok(params,Index);
        new tmp2[256]; tmp2 = strtok(params,Index);
        new tmp3[256]; tmp3 = strtok(params,Index);
       
        if(!strlen(tmp) || !strlen(tmp2)) return
        SendClientMessage(playerid, COLOR, "Usage: /giveweapon [PlayerID] [Weapon ID/Name] [Ammo]") &&
        SendClientMessage(playerid, COLOR, "Function: Will give a weapon to a specified player");
        new player1 = strval(tmp);
        new weap, ammo, WeapName[32];
        new string[128];
        if(!strlen(tmp3) || !IsNumeric(tmp3) || strval(tmp3) <= 0 || strval(tmp3) > 99999) ammo = 500;
        else ammo = strval(tmp3);
        if(!IsNumeric(tmp2)) weap = GetWeaponIDFromName(tmp2);
        else weap = strval(tmp2);
        if(IsPlayerConnected(player1) && player1 != INVALID_PLAYER_ID)
        {
            if(!IsValidWeapon(weap))
            return SendClientMessage(playerid,red,"ERROR: Invalid Weapon ID");
            GetWeaponName(weap,WeapName,32);
            format(string, sizeof(string), "== You have given \"%s\" a %s (%d) with %d rounds of Ammo ", PlayerName2(player1), WeapName, weap, ammo);
            SendClientMessage(playerid,COLOR,string);
            if(player1 != playerid)
            {
            format(string,sizeof(string),"==  \"%s\" has given you a %s (%d) with %d rounds of Ammo ", PlayerName2(playerid), WeapName, weap, ammo);
            SendClientMessage(player1,COLOR,string);
            }
            return GivePlayerWeapon(player1, weap, ammo);
    }
    return 1;
}
Add it in your Admin filterscript.
Reply
#3

http://forum.sa-mp.com/showpost.php?...22&postcount=6

@Sliceofdeath Read this; Why you should not use 256
Reply
#4

i need to random player..
Reply
#5

Quote:
Originally Posted by EitayEliyahu
Посмотреть сообщение
i need to random player..
You just have to write /giveweapon [player id] [weapon id]
Reply
#6

Quote:
Originally Posted by Sliceofdeath
Посмотреть сообщение
You just have to write /giveweapon [player id] [weapon id]
but i want random player!
no specifiec player
Reply
#7

pawn Код:
RandomPlayerID()
{
    new
        RandomID[MAX_PLAYERS],
        Players = 0;

    for(new i=0; i != MAX_PLAYERS; i++)
        if(IsPlayerConnected(i))
            RandomID[Players++] = i;

    if(!Players)
        return INVALID_PLAYER_ID;

    return RandomID[random(Players)];
}

new WinnerID = RandomPlayerID();
if(WinnerID != INVALID_PLAYER_ID)
{
    GivePlayerWeapon(WinnerID,WeaponID,Ammo);
}
Reply
#8

pawn Код:
stock choose_random_player()
{
     new random_player = random(MAX_PLAYERS);
     if(!IsPlayerConnected( random_player ) )
     {
           choose_random_player();
     }
     else return random_player;
}
Now use this to give weapon:
pawn Код:
GivePlayerWeapon(choose_random_player(), WEAPONID, AMMO);
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)