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

Messages - (SpCy)Alex

#1
Applications / Re: PLZ host my server freind
Aug 12, 2018, 12:48 PM
Hi, I'm Alex, I come from the future.
#2
Support / Re: How to fix this Radio error?
Aug 12, 2018, 12:21 PM
If it works correctly it dissable the message print
#3
-_- Alecu shut up
#4
Clans and Families / Re: FC - Fight Club
Aug 11, 2018, 09:22 AM
You always but always have to be in all publications wtfff public shit just to publish. 100 of your publications is pure shit.Pls die
#5
Videos & Screenshots / Re: VCMP in Linux Mint
Aug 11, 2018, 08:24 AM
how are you going to find it in google if it is script -_-
#6
Clans and Families / Re: FC - Fight Club
Aug 10, 2018, 12:21 PM
I would feel great if you stopped publishing unnecessary shits and you would leave vcmp.
#7
Support / Re: How to fix this Radio error?
Aug 10, 2018, 12:20 PM
I do not know but in the image it looks very small
#8
Off-Topic General / Re: unban appeal
Aug 10, 2018, 12:14 PM
lel
#9
IDK
#10
Clans and Families / Re: FC - Fight Club
Aug 10, 2018, 08:54 AM
Nel
#11
Videos & Screenshots / Re: VCMP in Linux Mint
Aug 09, 2018, 07:55 PM
Lol is very very good. How to do it?
#12
I do not know if it can be done but try a Gui.
#13
The same is because you have modified the game or the vcmp does not work
#14
Script Showroom / Re: Stunting Server
Aug 06, 2018, 11:42 AM
This server is very good but it is very simple. And I know what they are trying to help. Also, you are not the right man to talk about since yours is 5 copies of servers in 1.
#15
Support / Error
Aug 06, 2018, 10:40 AM
I have a hunger system that gives me error in the tointeger (what is bad here i dont found error and it no work if one can help me please

local type = stream.ReadString();
   if(GetTok(type," ",1) == "spawn")
   {
      try{
      ::stats.Text = "Wanted level:"+GetTok(type," ",2)+" XP:"+GetTok(type," ",3);
      ::hunger.Value = GetTok(type," ",6).tointeger(); <------ Says it no exist  and spam in server this (the index 'tointeger' does not exist)
      }
      catch(e) Console.Print(e);
   }
Here he sends data to "spawn"

local hunger = ReadIniInteger("PlayerStats.ini","Hunger",player.Name);
   local xp = ReadIniInteger("PlayerStats.ini","XP",player.Name);
   Stream.StartWrite();
   Stream.WriteString("spawn "+player.WantedLevel+" "+xp+" "+hunger);
   Stream.SendStream(player)

///When player enter checkpoint
if(CheckpointColors(checkpoint,restaurant) == true)
   {
      Stream.StartWrite();
      Stream.WriteString("food");
      Stream.SendStream(player);
   }
   local hunger = ReadIniInteger("PlayerStats.ini","Hunger",player.Name);
   local xp = ReadIniInteger("PlayerStats.ini","XP",player.Name);
   Stream.StartWrite();
   Stream.WriteString("spawn "+player.WantedLevel+" "+xp+" "+hunger);
   Stream.SendStream(player);

if(GetTok(type," ",1) == "food")
   {
      switch(GetTok(type," ",2).tointeger())
      {
         case 1:
         {
            cash = 5;
            hunger = 5;