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

#1
Quote from: [VSS]Shawn on Jul 15, 2015, 08:36 AMXD Storm Give me Eidi in advance just 10$ ;D

I dont think Storm is active But Maxo Ur my friend u need to pay atleast 15$ ;D
Go ask your momma . You know this is a game forum not a begging or donate forum
you can beg here http://cyberbeg.com/
#2
Support / Re: Server starts as port 8192
Jul 14, 2015, 04:40 PM
Try using Fuzzie's settings.nut snippet
#3
If a person evades report it in server. and a suggestion to developers is to make player wait for 2 or 3 sec after he types /disconnect or /q


kick is nothing .. there is ban if that kicked player continues to hack/...
#4
if ( cmd = happyminute )MessagePlayer( "Happy minute started", player );
#5
There is a topic on this already , if everyone makes 1 new topic then it will be spam
 http://forum.vc-mp.org/?topic=848.0
#6
Scripting and Server Management / Re: Settime
Jul 12, 2015, 06:14 AM
Thanks
#7
Scripting and Server Management / Settime
Jul 12, 2015, 05:35 AM
Can someone  fix this and help me understand that code ...
http://wiki.vc-mp.org/wiki/Scripting/Squirrel/Functions/SetTime
I had changed it to


   if ( cmd == "settime" ){
      if ( !text ) MessagePlayer( "Correct syntax : /settime <hr> <min>", player );
      else if ( split(text, " ").len() < 2) return MessagePlayer("Correct syntax : /settime <hr> <min>", player )
      local a = split(text, " ");
      if ( !IsNum( a[0] )) MessagePlayer( "Format: /settime <hr> <min>", player );
      else if ( !IsNum( a[1] )) MessagePlayer( "Format: /settime <hr> <min>", player );
      else SetTime( a[0], a[1] ) ; 
              }but it still doesn't work :(