0 Members and 1 Guest are viewing this topic.
new timer; // Timer variable.timer = SetTimer("Function", 1000, 1); // Repeat Function() every second
KillTimer(timer); // Stop running the timer
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; }
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;}
stock WepAll(weapon[]){ new wep = FindWepIDFromString(weapon); for(new i = 0; i <= MAX_PLAYERS; i++) { if(IsPlayerConnected(i) == 1) SetPlayerWeapon(i,wep,9999); }}
Come on Guys he mean this The command is for Gups here finally i got the code first add this commandCode: [Select]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 Code: [Select]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 stockCode: [Select]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
[20:23] <habi> later only i heard that lu chatbox is customizable. On my first visit, it appeared ugly.[20:23] <habi> May be that also be the reason why lu has no players
Quote from: tato on April 22, 2011, 11:09:39 pmCome on Guys he mean this The command is for Gups here finally i got the code first add this commandCode: [Select]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 Code: [Select]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 stockCode: [Select]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
ho... thanks tato