Menu

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.

Show posts Menu

Topics - Yankee

#1
I download the 0.4 version of vcmp and it give error "Version used by server is not installed",I tried to open it in administrator mode and it start downloading version 004 but it give error when finishes.Here is the picture can anyone help ?

https://pasteboard.co/GLGBJQe.png
#2
Hi,I make this function and it make the server crashed.I'm not good at scripting.Can someone fix it.I want players can't type without spawn.
function onPlayerChat( player, text )
{
if ( !player.IsSpawned ) MessagePlayer( "[#FF0000][ERROR] - [#F7FE2E]You have to be spawned.", player );
else print( player.Name + ": " + text );
return 1;
}
#3
Hi everybody,my question is simple.I have this syntax,so how can i make it ?I want players mustn't type if they weren't spawned.
#4
Hi guys,
How can I show the class name in class selection menu ?For example,if player change the skins in the class/character selection menu,names of the class must be show in the screen like medic,soldier etc.Thanks from now.


http://imgur.com/a/EVhSM
#5
Hi everybody,I have this syntax,but i couldn't convert it to command.Can somedoy do it for me ?
CreateVehicle( model, pos, angle, col1, col2)
#6
Hi guys,
Question is simple,first i made a system for this but it's not working properly.Can someone help me to fix this code or give me working code ?

else if ( cmd == "givescore" )
    {
        if(!text) MessagePlayer( "[#ffffff]syntax - /givescore <playerName> <Amount>", player );
        else
        {
            local params = split( text, " " ), plr = FindPlayer( params[0] ), amount = params[1];
            if(!plr) MessagePlayer( "[#ffffff]Error - invalid player", player );
            else if(!ammount || !IsNum( ammount )) MessagePlayer( "[#ffffff]Error - The Ammount must be integer", player );
            else
            {
                plr.Score(ammount.tointeger());
                MessagePlayer( "[#DC26FF]"+player.Name+" given $"+ammount.tointeger()+" to you",plr);
                MessagePlayer( "[#DC26FF]You gave $"+ammount.tointeger()+" > "+plr.Name,player);
                SaveAccount(plr)
            }
        }
    }
#7
Hi guys,it is a very simple question.How I change this code ?I want to explode players with this code like /playerid player.Pos buuum :)

CreateExplosion( world, type, pos, playerCaused, onGround )
#8
Hi guys,my fix code is working very good.But players can use fix although they don't have any money.They can use it without money.Can someone add a command for this ?I want players can't use this command without money.Command must stop the player with a message like this"You can't use this command without cost".

else if ( cmd == "fix" )
 {
 if ( !player.Vehicle ) MessagePlayer( "There is no car for fix.", player );
 else if ( ( player.Vehicle.Health == 1000 )  && ( player.Vehicle.GetTyre(0) == 0 || player.Vehicle.GetTyre(1) == 0 || player.Vehicle.GetTyre(2) == 0 || player.Vehicle.GetTyre(3) == 0 ) ) MessagePlayer( "Error.", player );
 else
  {
  player.Cash -=250
  player.Vehicle.Fix();
  MessagePlayer( "Fixed.", player );
  }
 }
#9
Hi guys,
I searched a lot for a spam system for my server.I found some scripts but i can't use it properly.It gives script errors.I tried to make my own spam system but it don't work ,i did something wrong.Can someone help me ?
#10
Hi guys,i tried all systems and they not work properly.I want players can take a weapon with cost,for example player can take a minigun with $5000 and other can take a M4 with $2500.Thanks from now.
#11
Hi guys,i want the players can buy a wep with a cost.Example,players use commands to buy weapons.Can anyone give me ?
#12
Support / A Command For Only A Class
May 27, 2017, 10:04 AM
Hi guys,how can i make a command for only one class.For example only medic team can use a /heal code and /heal other players.Can anyone give me ?
#13
In GTA SA skin sites,there are a lot of skins and i love these skins.How can I convert them to GTA VC.Only .dff and .txd files,should I edit the XML file or what should I do ?
#14
Support / Subnet System
May 27, 2017, 07:56 AM
Hi guys,I added subnet script and Database.db to my server.It works but players can come my server after resetting their internet.What should I do ?I can paste my script to this topic or can anyone give me working ban script ?
#15
Hi guys,
I have a problem with chat.Chat is unvisible.I can't see anything about player messages,chat is completely unvisible.Please help I reinstalled the game and multiplayer client,what should I do ?