Vice City Multiplayer

VC:MP => mIRC/pawn Scripting => Topic started by: A7Xsniper on April 21, 2011, 06:45:54 PM

Title: killtime command ayuda help
Post by: A7Xsniper on April 21, 2011, 06:45:54 PM
hello, as I can put a command to give weapons to all
example: / c KillTimer m4 or rocket etc.


hola, como puedo poner un comando para dar armas a todos
ejemplo  /c killtime m4 o rocket etc.


:P xD
Title: Re: killtime command ayuda help
Post by: tato on April 22, 2011, 03:47:07 AM
ok i will made that command ok (just ask me from msn )

ok voi hacer ese comando (solo preguntame por msn)
Title: Re: killtime command ayuda help
Post by: yazeen on April 22, 2011, 04:44:46 AM
xD Use Timerz and KillTimerz
Title: Re: killtime command ayuda help
Post by: stormeus on April 22, 2011, 06:34:09 AM

new timer; // Timer variable.
timer = SetTimer("Function", 1000, 1); // Repeat Function() every second


KillTimer(timer); // Stop running the timer


Is this what you're looking for?
Title: Re: killtime command ayuda help
Post by: tato on April 22, 2011, 09:09:39 PM
Come on Guys he mean this
The command is for Gups :D

here finally i got the code

first add this command

else if (strcmp(cmd, "wepall", true) == 0) {
    tmp = strtok(cmdtext, idx);
      new szMsg[256];
if(PlayerInfo[playerid][Logged] != 1) SendClientMessage(playerid, COLOR_RED, "Necesitas loguear primero");
else if(!IsPlayerCommandLevel(playerid,"setwep")) SendClientMessage(playerid, COLOR_RED, "No tienes acceso a ese comando!");
else if (!strlen(tmp)) SendClientMessage(playerid,COLOR_RED,"[Syntax] - The correct use: /c wepall <weapon/id>.");
else {
format(szMsg,sizeof(szMsg),"Admin %s sent to all players a wepon: %s.",gPlayers[playerid],GetWeaponNameID(FindWepIDFromString(tmp)));
SendClientMessageToAll(COLOR_GREEN,szMsg);
WepAll(tmp);
}
return 1;
}

next step add this public    
public GetWeaponNameID(wep)
{
new w[256];
if (wep == 1) w = "Brass Knuckle";
   if (wep == 2) w = "Screw Driver";
if (wep == 3) w = "Golf Club";
if (wep == 4) w = "Night Stick";
if (wep == 5) w = "Knife";
if (wep == 6) w = "Baseball Bat";
   if (wep == 7) w = "Hammer";
if (wep == 8) w = "Cleaver";
if (wep == 9) w = "Machete";
if (wep == 10) w = "Katana";
if (wep == 11) w = "Chainsaw";
   if (wep == 12) w = "Grenade";
if (wep == 13) w = "Remote Grenade";
if (wep == 14) w = "TearGas";
if (wep == 15) w = "Molotov";
if (wep == 16) w = "Missile";
   if (wep == 17) w = "Colt45";
if (wep == 18) w = "Python";
if (wep == 19) w = "Shotgun";
if (wep == 20) w = "Spaz";
if (wep == 21) w = "Stubby";
   if (wep == 22) w = "Tec9";
if (wep == 23) w = "Uzi";
if (wep == 24) w = "Ingrams";
if (wep == 25) w = "MP5";
if (wep == 26) w = "M4";
   if (wep == 27) w = "Ruger";
if (wep == 28) w = "Sniper Rifle";
if (wep == 29) w = "Laser Scope";
if (wep == 30) w = "Rocket Launcher";
if (wep == 31) w = "Flame Thrower";
   if (wep == 32) w = "M60";
   if (wep == 33) w = "Minigun";
   if (wep == 35) w = "Heli-Cannon";
   if (wep == 39) w = "Vehicle";
   if (wep == 41) w = "Explosion";
   if (wep == 42) w = "Drive-By";
   if (wep == 43) w = "Drowned";
   if (wep == 60) w = "Heli-Blades";
return w;
}

next step add this stock
stock WepAll(weapon[])
{
new wep = FindWepIDFromString(weapon);
   for(new i = 0; i <= MAX_PLAYERS; i++) {
       if(IsPlayerConnected(i) == 1) SetPlayerWeapon(i,wep,9999);
    }
}

Credits: Madara & Tato, Gups scripters
Title: Re: killtime command ayuda help
Post by: heekz.shadow on April 24, 2011, 02:21:15 PM
Quote from: tato on April 22, 2011, 09:09:39 PM
Come on Guys he mean this
The command is for Gups :D

here finally i got the code

first add this command

else if (strcmp(cmd, "wepall", true) == 0) {
    tmp = strtok(cmdtext, idx);
      new szMsg[256];
if(PlayerInfo[playerid][Logged] != 1) SendClientMessage(playerid, COLOR_RED, "Necesitas loguear primero");
else if(!IsPlayerCommandLevel(playerid,"setwep")) SendClientMessage(playerid, COLOR_RED, "No tienes acceso a ese comando!");
else if (!strlen(tmp)) SendClientMessage(playerid,COLOR_RED,"[Syntax] - The correct use: /c wepall <weapon/id>.");
else {
format(szMsg,sizeof(szMsg),"Admin %s sent to all players a wepon: %s.",gPlayers[playerid],GetWeaponNameID(FindWepIDFromString(tmp)));
SendClientMessageToAll(COLOR_GREEN,szMsg);
WepAll(tmp);
}
return 1;
}

next step add this public    
public GetWeaponNameID(wep)
{
new w[256];
if (wep == 1) w = "Brass Knuckle";
   if (wep == 2) w = "Screw Driver";
if (wep == 3) w = "Golf Club";
if (wep == 4) w = "Night Stick";
if (wep == 5) w = "Knife";
if (wep == 6) w = "Baseball Bat";
   if (wep == 7) w = "Hammer";
if (wep == 8) w = "Cleaver";
if (wep == 9) w = "Machete";
if (wep == 10) w = "Katana";
if (wep == 11) w = "Chainsaw";
   if (wep == 12) w = "Grenade";
if (wep == 13) w = "Remote Grenade";
if (wep == 14) w = "TearGas";
if (wep == 15) w = "Molotov";
if (wep == 16) w = "Missile";
   if (wep == 17) w = "Colt45";
if (wep == 18) w = "Python";
if (wep == 19) w = "Shotgun";
if (wep == 20) w = "Spaz";
if (wep == 21) w = "Stubby";
   if (wep == 22) w = "Tec9";
if (wep == 23) w = "Uzi";
if (wep == 24) w = "Ingrams";
if (wep == 25) w = "MP5";
if (wep == 26) w = "M4";
   if (wep == 27) w = "Ruger";
if (wep == 28) w = "Sniper Rifle";
if (wep == 29) w = "Laser Scope";
if (wep == 30) w = "Rocket Launcher";
if (wep == 31) w = "Flame Thrower";
   if (wep == 32) w = "M60";
   if (wep == 33) w = "Minigun";
   if (wep == 35) w = "Heli-Cannon";
   if (wep == 39) w = "Vehicle";
   if (wep == 41) w = "Explosion";
   if (wep == 42) w = "Drive-By";
   if (wep == 43) w = "Drowned";
   if (wep == 60) w = "Heli-Blades";
return w;
}

next step add this stock
stock WepAll(weapon[])
{
new wep = FindWepIDFromString(weapon);
   for(new i = 0; i <= MAX_PLAYERS; i++) {
       if(IsPlayerConnected(i) == 1) SetPlayerWeapon(i,wep,9999);
    }
}

Credits: Madara & Tato
FAIL! if he isnt using gups he dont got WEPALL and credits to madara not you and to gups scripters
Title: Re: killtime command ayuda help
Post by: tato on April 24, 2011, 06:51:06 PM
Quote from: heekz.shadow on April 24, 2011, 02:21:15 PM
Quote from: tato on April 22, 2011, 09:09:39 PM
Come on Guys he mean this
The command is for Gups :D

here finally i got the code

first add this command

else if (strcmp(cmd, "wepall", true) == 0) {
     tmp = strtok(cmdtext, idx);
       new szMsg[256];
if(PlayerInfo[playerid][Logged] != 1) SendClientMessage(playerid, COLOR_RED, "Necesitas loguear primero");
else if(!IsPlayerCommandLevel(playerid,"setwep")) SendClientMessage(playerid, COLOR_RED, "No tienes acceso a ese comando!");
else if (!strlen(tmp)) SendClientMessage(playerid,COLOR_RED,"[Syntax] - The correct use: /c wepall <weapon/id>.");
else {
format(szMsg,sizeof(szMsg),"Admin %s sent to all players a wepon: %s.",gPlayers[playerid],GetWeaponNameID(FindWepIDFromString(tmp)));
SendClientMessageToAll(COLOR_GREEN,szMsg);
WepAll(tmp);
}
return 1;
}

next step add this public     
public GetWeaponNameID(wep)
{
new w[256];
if (wep == 1) w = "Brass Knuckle";
    if (wep == 2) w = "Screw Driver";
if (wep == 3) w = "Golf Club";
if (wep == 4) w = "Night Stick";
if (wep == 5) w = "Knife";
if (wep == 6) w = "Baseball Bat";
    if (wep == 7) w = "Hammer";
if (wep == 8) w = "Cleaver";
if (wep == 9) w = "Machete";
if (wep == 10) w = "Katana";
if (wep == 11) w = "Chainsaw";
    if (wep == 12) w = "Grenade";
if (wep == 13) w = "Remote Grenade";
if (wep == 14) w = "TearGas";
if (wep == 15) w = "Molotov";
if (wep == 16) w = "Missile";
    if (wep == 17) w = "Colt45";
if (wep == 18) w = "Python";
if (wep == 19) w = "Shotgun";
if (wep == 20) w = "Spaz";
if (wep == 21) w = "Stubby";
    if (wep == 22) w = "Tec9";
if (wep == 23) w = "Uzi";
if (wep == 24) w = "Ingrams";
if (wep == 25) w = "MP5";
if (wep == 26) w = "M4";
    if (wep == 27) w = "Ruger";
if (wep == 28) w = "Sniper Rifle";
if (wep == 29) w = "Laser Scope";
if (wep == 30) w = "Rocket Launcher";
if (wep == 31) w = "Flame Thrower";
    if (wep == 32) w = "M60";
    if (wep == 33) w = "Minigun";
    if (wep == 35) w = "Heli-Cannon";
    if (wep == 39) w = "Vehicle";
    if (wep == 41) w = "Explosion";
    if (wep == 42) w = "Drive-By";
    if (wep == 43) w = "Drowned";
    if (wep == 60) w = "Heli-Blades";
return w;
}

next step add this stock
stock WepAll(weapon[])
{
new wep = FindWepIDFromString(weapon);
    for(new i = 0; i <= MAX_PLAYERS; i++) {
        if(IsPlayerConnected(i) == 1) SetPlayerWeapon(i,wep,9999);
     }
}

Credits: Madara & Tato
FAIL! if he isnt using gups he dont got WEPALL and credits to madara not you and to gups scripters
you are the one who fail cuz 1st he is using gups 2cond i help to make that command and madara helped me too and i forgot gups scripters  :P
Title: Re: killtime command ayuda help
Post by: AcTiOnLiFe on April 25, 2011, 02:17:05 PM
ho... thanks tato :P
Title: Re: killtime command ayuda help
Post by: tato on April 26, 2011, 02:34:46 AM
Quote from: AcTiOnLiFe on April 25, 2011, 02:17:05 PM
ho... thanks tato :P
no problm