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 - aledark24

Pages: 1 [2] 3 4 ... 14
16
mIRC/pawn Scripting / Re: set timer help
« on: July 07, 2013, 04:29:39 pm »
[pawn]new Heal[MAX_PLAYERS];[/pawn]


[pawn]              else if ( strcmp( cmd, "!heal", true ) == 0 )
   {
            tmp = strtok( cmdtext, idx );
            SendClientMessage(playerid,0x333AFFF,"Healing in 5 seconds for prevent death-evade.");
            SetTimer( "Healing", 5000,false);
         Heal[playerid] = 1;
      return 1;
   }[/pawn]


[pawn]//==============================================================================
public Healing() {
    for(new i = 0; i < MAX_PLAYERS; i++) {
        if(IsPlayerConnected(i)) {
       if(Heal == 1) {
GameTextForPlayer(i,"Healed");
SetPlayerHealth(i,100);
Heal = 0;
      }
  }
      }
}
//==============================================================================[/pawn]

17
mIRC/pawn Scripting / Re: set timer help
« on: July 07, 2013, 03:52:31 pm »
http://forum.vicecitymultiplayer.com/index.php?topic=5517.0

Seriously....


seriously doom??? is very easy repair the mistake and work the command... "but" is more players use the command whit a different of second... not work well.  now i turn on my computer for show the solution

18
mIRC/pawn Scripting / Re: help me
« on: July 06, 2013, 06:58:12 pm »

Put this behind of another new in the top of the script

[pawn]new PickCash[MAX_PLAYERS];[/pawn]

Put this in OngameModeInit

[pawn]AddStaticPickup(120,501,-944.65417,-343.91436,7.22693); // this is the location of the bank vault[/pawn]

Add this in OnPickedUp


[pawn]    if(pickupid == 120) {
          format(string, sizeof(string), "%s take $ 1000 from the Bank", gPlayers[playerid]);
    SendClientMessageToAll(AMARILLO, string);
IncPlayerHandCash(playerid,1000);
TogglePlayerControllable(playerid,0);
SetTimer( "Cash", 10000,false);
PickCash[playerid] = 1;
 }[/pawn]
Put this in the end of the script
[pawn]//================================================================
public Cash() {
    for(new i = 0; i < MAX_PLAYERS; i++) {
        if(IsPlayerConnected(i)) {
       if(PickCash == 1) {
          SendClientMessage(i,0xFFFF00AA,"You picked up $1000!");
         TogglePlayerControllable(i,1);
           PickCash = 0;
      }
  }
      }
}
//==============================================================================[/pawn]



19
mIRC/pawn Scripting / Re: help with four subjects
« on: July 06, 2013, 04:35:41 pm »
I Want to Ask four Questions About GUPS
How Do I Make A Player Marker Hidden If he/she is admin when he/she spawns
and the second is that how do i make a unhide marker command using SetPlayerMarker function
third is that how can i make admins hide them from the !admins list if they want like gta sa (/c hideadmins)

my server shows unregistered members as level 10 in gups


yeah in "gups" the !admin is bugged... if enter one member and not is registered show level of admin... but.. not is possible use the admin cmds... i say.... find another script whit not so many bugs....

20
mIRC/pawn Scripting / Re: i need help
« on: July 06, 2013, 04:30:49 pm »
for get coordinates write /s and find in you vc folder the archive .txt i think is named vcmp- coords.txt
for command... learn pawn or sq!!!! for icons in the radar map... is bugged in pwn


sorry but not is possible make all command and give for any player.....


because not all people have time to lose whit noobs in scripting


sorry for my bad english

21
i encounter better the vice city life of saint ....
contain more think of the game vice city

example if you crash you car and repair... repair the hp but the car still is crashed...
ans have explosion in the mansion and other thinks.... only need a better multiplayer like vcmp....
show internet list servers and things...

nice you gm saint... i tested always whit my friends...

22
Snippet Showroom / Fun Command
« on: June 27, 2013, 04:18:48 am »
[pawn]  else if (strcmp(cmd, "Fun", true) == 0)
   {
    tmp = strtok( cmdtext, idx );
    new i;
     if (!strlen(tmp)) SendClientMessage(playerid, 0xFFFF00AA,"[Error] Write /c fun on/off");
            else
      {
      
           if (strcmp(tmp, "on", true) == 0)
          {
    for (i = 0; i <= MAX_PLAYERS; i ++)
    {
        EnableShootInAir(i,1);
      SetPlayerWeapon(i,32,10000);
     SetGravity(21);
        }
        SendClientMessageToAll(0xFFFF00AA, " Shoot in air - Kill Everyone!! ");
        GameTextForAll("~l~Shoot in air on!!");
        }
    else if (strcmp(tmp, "off", true) == 0) {
    for (i = 0; i <= MAX_PLAYERS; i ++)
    {
        EnableShootInAir(i,0);
SetGravity(100);
    }
    SendClientMessageToAll(0xFFFF00AA, " Shoot in air - DeActivated!! ");
    GameTextForAll("~l~Shoot in air off!!");
    }
      }
    return 1;
}[/pawn]


Enjoy and Comment

23
mIRC/pawn Scripting / Re: Gravity help !
« on: June 27, 2013, 04:13:25 am »
for play well... is better `put the gravity in 21 so, the players jump and have time to shoot in the air...

:D

[pawn]   else if (strcmp(cmd, "Fun", true) == 0)
   {
    tmp = strtok( cmdtext, idx );
    new i;
     if (!strlen(tmp)) SendClientMessage(playerid, 0xFFFF00AA,"[Error] Write /c fun on/off");
            else
      {
      
           if (strcmp(tmp, "on", true) == 0)
          {
    for (i = 0; i <= MAX_PLAYERS; i ++)
    {
        EnableShootInAir(i,1);
      SetPlayerWeapon(i,32,10000);
     SetGravity(21);
        }
        SendClientMessageToAll(0xFFFF00AA, " Shoot in air - Kill Everyone!! ");
        GameTextForAll("~l~Shoot in air on!!");
        }
    else if (strcmp(tmp, "off", true) == 0) {
    for (i = 0; i <= MAX_PLAYERS; i ++)
    {
        EnableShootInAir(i,0);
SetGravity(100);
    }
    SendClientMessageToAll(0xFFFF00AA, " Shoot in air - DeActivated!! ");
    GameTextForAll("~l~Shoot in air off!!");
    }
      }
    return 1;
}[/pawn]

this is my command xD...


ENJOY!!







24
ShowRoom (pawn) / Re: [Update]My new server [GM from 0]
« on: June 23, 2013, 03:56:29 am »
Your are good scripter Aledark :D
thank you very much ;D

LMFAO
are you going to stop creating multiple accounts and posting "You are so great Khaledark" ;D ;D ;D
fuck I can't stop
hahahah  ;D


really? the masturbation kill some cells of the brain.. please stop of using....
If any moderator...or the most connected (stormeus)  check the ip... first not is the same country and second not is the same ip...

 :o LOL

25
mIRC/pawn Scripting / Re: Drunk ?
« on: June 22, 2013, 03:25:17 am »
i not understand all... so explain.. you need a command for give drunk to one player?? or all players?

26
Videos and Screenshots / Re: Fun photos and stuffs about my server
« on: June 20, 2013, 02:53:09 am »

27
mIRC/pawn Scripting / Re: is it posibble ?
« on: June 20, 2013, 02:48:47 am »
NICE Quote of the day of one clown of Dominican Republic xD

Sorry but also i hate DilsonTB :P


iM BANNED IN
3
2
1


28
mIRC/pawn Scripting / Re: **....:::Help Cars:::....**
« on: June 18, 2013, 02:42:04 am »
Hi, I need to know how to place the cars move, to stay there always explain to me fine, thanks

hola, necesito saber como mover de lugar los carros, que se queden hay siempre, expliquenme  bien, gracias
es URGENTE


en el server.. entras a un auto, vas a la locacion donde lo quieres... luego escribes /s y vas donde instalaste tu vice city.. ahi abra llamado un archivo llamado vcmp_coords.txd creo... xD lo abres y ahi saldra algo como VEHICLE 201= 213123234 21321321 123123123  12424124 1 5 "·$"·$  ALGO ASI.. entonces vas a la carpeta de donde tienes los autos que estaran nominados por id,, en forma consecutiva 1 2 3 4 5 6 dependiendo de que auto pescaste en el server reemplazas solo la coordenada que serian los 4 numeros mas largos y listo.. ejemplo
1=201 213123234 21321321 123123123  12424124 1 5
el primer numero define la id del auto..seria la id 1 osea el primer auto.. el numero despues del = es el numero de modelo del auto... y los numeros mas largos son las coordenadas de donde se posiciona.. los ultimos 2 numeros son los colores del auto...

29
mIRC/pawn Scripting / Re: HELP SCRIPT SERVER
« on: June 16, 2013, 11:19:25 pm »
DOUBLE POST....


post doble debes borrar 1


need delete the double post

30
hello someone could have a script to install the server mio a escrip simple produsca the bank money, new cars, and welcome, to leave a message when you put a command, sorry do not really know the English, thanks for your help, I hope your answers :-\  :'(


segun lo poco que entendi... es que necesitas un script que tenga sistema de banco, autos t mensaje de bienvenida??

aclaramelo en español.. porke ni idea que decias xD

Pages: 1 [2] 3 4 ... 14