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

#61
Half movement track is completed
http://youtu.be/9CikM-Vxw1Y

Note: Sorry for momo quality T..T
#62
Most probably onScriptUnload(); function may do it unless you aren't using a restarter with your server.
#63
How about java for vc-mp?
#64
Servers / Re: [0.4] Extreme City 2015
Dec 15, 2014, 09:44 AM
Really nice work bro!
Expecting to see something awesome from your server.
:D
#65
Hello Honey,
It happened with me too when I switched off my internet but I found a fix too.
Just remove the announce plugin from server.cfg file then it won't crash, hopefully.
^_^
#66
Snippet Showroom / Hotkeys system :)
Oct 19, 2014, 05:14 AM
Hello. My first post ^_^
Hope you'll like it ;)
Ok so first under onScriptLoad you'll need to create some global variables which will represent keybindings using BindKey function.
<variable> <- BindKey(boolean value,hex code,some integer value(keep it 0),0 here too); Well idk whats that boolean value for so keep true as default one.
For hex codes use this website --> http://msdn.microsoft.com/en-us/library/windows/desktop/dd375731(v=vs.85).aspx
So, here are some of my key bindings
onScriptLoad() {
 I <- BindKey(true, 0x49, 0, 0);
   H <- BindKey(true, 0x48,0,0);
   P <- BindKey(true, 0x50,0,0);
   K <- BindKey(true, 0x4B,0,0);
   L <- BindKey(true, 0x4C,0,0); }
Now, to use these keybindings you have onKeyDown function.
Syntax: onKeyDown(player,key) Now you can simply use your keybindings through their respective variables through switch-case or if-else if.
Here's mine for nitro :
  function onKeyDown(player,key)
{
if(key==I)
{ if(player.Vehicle!=null) { local v=player.Vehicle; v.RelativeSpeed*=1.3;} }
}
Hope you like this ^_^.