Show Posts
|
Pages: [1] 2
|
2
|
Scripting / Script Snippets / Re: Vehicle Cmds!
|
on: February 22, 2012, 04:37:09 am
|
He was just registered since February 18, 2012, and i think he did not even got any Squirrel class's.
i have got i know some squirrel in vcmp and complete pawn but yeah thats right that i have recently joined lu forums and lu but they uses alsmost same language as vcmp : Squirrel
|
|
|
3
|
Scripting / Script Snippets / Re: Vehicle Cmds!
|
on: February 22, 2012, 04:35:04 am
|
How can this be very bad if it works?
Very well done, nice for beginners like you who got stuck at some bits of the command.
Why?
Because these are the common cmds and everyone can make them easily, and you're a beginner not a pro.
So you can only post snippets if you're a pro? C'mon, did you fall on your head or something? What's that for bullshit...
Thanks
|
|
|
4
|
Scripting / Script Help / Re: Bindkey Help
|
on: February 21, 2012, 02:06:26 pm
|
Does the rest of the script actually load? You can try putting a print into the onScriptLoad function. i tried adding print to it , it doesnt loads so what did i do wrong?
|
|
|
6
|
Scripting / Script Help / Re: /kuruma help
|
on: February 21, 2012, 11:08:57 am
|
you could open one topic and ask everything there, not ten topics about a little help, thats all
ok sir
|
|
|
8
|
Scripting / Script Help / Re: /kuruma help
|
on: February 21, 2012, 11:02:01 am
|
omg learn something yourself 1. stop spamming the forum
i was just asking something sorry bye i will never ask nothing up here i am new to gta 3 so i was asking more help so i can become good like you but i dont think i can i am a spammer i cant do anything bye and sorry
|
|
|
9
|
Scripting / Script Help / Re: Bindkey Help
|
on: February 21, 2012, 11:00:43 am
|
i tried everything you told me i added it but after when i go in my server and press u in car to fix the damage nothing happens why?
|
|
|
10
|
Scripting / Script Help / /kuruma help
|
on: February 21, 2012, 04:27:13 am
|
Hello I Have Made A Command /kuruma and when i type /kuruma ingame it spawns on my head and i cant even move please help me
else if ( szCommand == "kuruma" ) { MessagePlayer( "Spawning A Kuruma", pPlayer ); CreateVehicle( VEH_KURUMA, pPlayer.Pos, pPlayer.Angle, -1, -1 ); }
|
|
|
11
|
Scripting / Script Help / Re: Bindkey Help
|
on: February 21, 2012, 03:40:33 am
|
i dont have any binds or binds_client.nut so do i have to create them ,copy then paste and save them when i run server go in i spawn /infernus when my car is damaged i press U nothing happens
|
|
|
12
|
Scripting / Script Help / Re: Bindkey Help
|
on: February 21, 2012, 03:32:18 am
|
you could just say "i want to copy svenko's server "
dude i tried adding it from your useful scripts but i am not doing it correctly so i want to do it seperatly
|
|
|
14
|
Scripting / Script Help / Bindkey Help
|
on: February 20, 2012, 01:48:29 pm
|
You Know My Fix Command I Want To Make A Bindkey for it example when player drives a vehicle and he wants to repair his vehicle by pressing 2 so how do i make it?
|
|
|
15
|
Scripting / Script Snippets / Vehicle Cmds!
|
on: February 20, 2012, 01:11:05 pm
|
Add These On Your Script.nut
else if ( szCommand == "vcmds" ) { MessagePlayer( "===========Vehicle COMMANDS========== ", pPlayer ); MessagePlayer( "/flip /fix /ff /infernus ", pPlayer ); MessagePlayer( "===========Vehicle COMMANDS========== ", pPlayer ); }
else if ( szCommand == "flip" ) { if ( pPlayer.Vehicle ) { local rot = pPlayer.Vehicle.Angle; pPlayer.Vehicle.Pos = pPlayer.Vehicle.Pos; pPlayer.Vehicle.Angle = rot; } } else if ( szCommand == "ff" ) { if ( pPlayer.Vehicle ) { MessagePlayer( "Your Car Has Been Fixed And Flipped",pPlayer ); local rot = pPlayer.Vehicle.Angle; pPlayer.Vehicle.Pos = pPlayer.Vehicle.Pos; pPlayer.Vehicle.Angle = rot; pPlayer.Vehicle.Fix(); } else MessagePlayer( " You Are Not In Any Vehicle",pPlayer ); } else if ( szCommand == "fix" ) { if ( pPlayer.Vehicle ) { MessagePlayer( "Your Vehicle Has Been Repaired",pPlayer ); pPlayer.Vehicle.Fix(); } else MessagePlayer( " You Are Not In Any Vehicle",pPlayer ); } else if ( szCommand == "infernus" ) { MessagePlayer( "Spawning A Infernus", pPlayer ); CreateVehicle( VEH_INFERNUS, pPlayer.Pos, pPlayer.Angle, -1, -1 ); }
|
|
|
|