comando a todos.
#1

Hola, estoy haciendo unos comandos bбsicos y quiero saber como hacer para setear algo a todos, lo que quiero setear es virtualworld a todos, vida a todos y armadura todos.

Muchas gracias.
Reply
#2

Usa foreach o basate de algun sistema admin, busca en el foro bajatelo y alli miras

ejemplo sin fore

pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++) SetPlayerHealth(i, 100)// 100 de vida para todos
Reply
#3

pawn Код:
CMD:skinear(playerid, params[])
{
    for (new all=0; all < MAX_PLAYERS; all++)//bucle
    {
        if(IsPlayerConnected(all))
        {
            new vieja = 199;
            SendClientMessage(all,-1"Se ha skineado a todos los users");
            SetPlayerSkin(all,vieja);
        }
     }
     return true;
}
Reply
#4

Quote:
Originally Posted by jotajeda
Посмотреть сообщение
pawn Код:
CMD:skinear(playerid, params[])
{
    for (all=0; all < MAX_PLAYERS; all++)//bucle
    {
        if(IsPlayerConnected(all))
        {
            new vieja = 199;
            SendClientMessage(all,-1"Se ha skineado a todos los users");
            SetPlayerSkin(all,vieja);
        }
     }
     return true;
}
Pregunto... para quй la variable vieja? Desperdiciar tiempo de ejecuciуn al pedo.
Reply
#5

Quote:
Originally Posted by jotajeda
Посмотреть сообщение
pawn Код:
CMD:skinear(playerid, params[])
{
    for (all=0; all < MAX_PLAYERS; all++)//bucle
    {
        if(IsPlayerConnected(all))
        {
            new vieja = 199;
            SendClientMessage(all,-1"Se ha skineado a todos los users");
            SetPlayerSkin(all,vieja);
        }
     }
     return true;
}
ese bucle esta mal. -.-
Reply
#6

Quote:
Originally Posted by EnzoMetlc
Посмотреть сообщение
Pregunto... para quй la variable vieja? Desperdiciar tiempo de ejecuciуn al pedo.
Es para aquellos que tienen integrado en sus cerebros el buen sentido del humor.

Quote:
Originally Posted by OTACON
Посмотреть сообщение
ese bucle esta mal. -.-
Correguido.
Reply
#7

Quote:
Originally Posted by jotajeda
Посмотреть сообщение
Es para aquellos que tienen integrado en sus cerebros el buen sentido del humor.
No es humor, son tonterнas...
Reply
#8

Quote:
Originally Posted by INKISICION
Посмотреть сообщение
Usa foreach o basate de algun sistema admin, busca en el foro bajatelo y alli miras

ejemplo sin fore

pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++) SetPlayerHealth(i, 100)// 100 de vida para todos

Muchas gracias, me sirviу.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)