Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - tato

Pages: 1 2 [3] 4 5 ... 8
31
mIRC/pawn Scripting / Re: killtime command ayuda help
« on: April 24, 2011, 08:51:06 pm »
Come on Guys he mean this
The command is for Gups :D

here finally i got the code

first add this command

Code: [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 stock
Code: [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
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

32
mIRC/pawn Scripting / Re: cd in ann helpme xD [in pawno]
« on: April 23, 2011, 08:56:22 am »
i will do it X_X

33
mIRC/pawn Scripting / Re: killtime command ayuda help
« on: April 22, 2011, 11: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

Code: [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 stock
Code: [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, Gups scripters

34
mIRC/pawn Scripting / Re: killtime command ayuda help
« on: April 22, 2011, 05:47:07 am »
ok i will made that command ok (just ask me from msn )

ok voi hacer ese comando (solo preguntame por msn)

35
mIRC/pawn Scripting / Re: !flip command help
« on: April 21, 2011, 07:11:14 pm »
very good tato

WoW AcTion Life Your a Good Player in VCMP!

@Tato: Nice But Better using sql is Good. it is simple than pawno

Yes but i really need help in squirrel X_X    i don't know how to use squirrel

36
mIRC/pawn Scripting / Re: !flip command help
« on: April 21, 2011, 10:20:43 am »

37
Support / Re: Helppp
« on: April 21, 2011, 04:49:20 am »
Type "T" While you're playing


Pressione a tecla "T" quando você está jogando

38
mIRC/pawn Scripting / Re: I need help ... Please
« on: April 21, 2011, 04:46:17 am »
Ok....I want..Let me...Thanks
But explain how you wan't the command

39
mIRC/pawn Scripting / Re: Drift Point = Money ?
« on: April 21, 2011, 04:44:59 am »
Like an insane stunt bonus? I don't think that can be done with scripts.
I Know >_>

40
mIRC/pawn Scripting / Re: I need help ... Please
« on: April 20, 2011, 08:35:38 am »
Be more specific. Pawn or mIRC? Do you want the lottery system to be one where you buy a ticket and a ticket is randomly selected? How often do you want the lottery to run?
i know plz be spesific...i can help u in pwna iif u want

41
mIRC/pawn Scripting / Re: Set World Bounds in Pawno?
« on: April 19, 2011, 12:39:34 am »
i am still thinking about this

42
mIRC/pawn Scripting / Re: anti cheat help
« on: April 19, 2011, 12:38:17 am »
Well maby when i will finish the new version of XA in squirrel (XA SQLCrew) , i will realise the old version in pawno (ARG Crew v10) ;D witch include anti_hack lms anti spam etc... but maby i will delete some thinks for public version.. but there's nothing planed  :P
:O!!!!!!!!!!!!!!!!!!!!!!1

43
Support / Re: Hey I allways had this question
« on: April 18, 2011, 08:18:18 am »
That's what we are trying to explain to him, but he doesn't understand.
:O! i understand :P

44
Support / Re: Hey I allways had this question
« on: April 15, 2011, 05:28:10 pm »
I guess they are working on it, or it's for their clan only.. Who knows...
ohhh WTH something hapen to the pic X_X

45
Support / Re: Hey I allways had this question
« on: April 15, 2011, 04:01:35 am »
why this server is allways locked i wanna know how that server is X_X

Find out who owns it and ask them why, or ask people that go there for the password ;)
but i never see people right there X_X

Pages: 1 2 [3] 4 5 ... 8