Results 1 to 10 of 10

Thread: Searching for a mod

  1. #1
    Brigadier General
    Join Date
    Dec 2012
    Posts
    1,012
    Thanks
    440
    Thanked 171 Times in 132 Posts

    Searching for a mod

    YO folks,

    im searching for a mod where there is a command "jeepme ID" and there will spawn a rideable jeep infront of you. Its an expansion of the zzz_bope.iwd I cant find it anywhere

  2. #2
    Brigadier General
    Join Date
    Dec 2012
    Posts
    1,012
    Thanks
    440
    Thanked 171 Times in 132 Posts
    Nobody?

  3. #3
    Assadministrator kung foo man's Avatar
    Join Date
    Jun 2012
    Location
    trailerpark
    Posts
    2,011
    Thanks
    2,102
    Thanked 1,084 Times in 753 Posts
    I dont know about that little extension, but it seems pretty easy to make (a bit vector math + jeep mod understanding).
    timescale 0.01

  4. #4
    Brigadier General
    Join Date
    Dec 2012
    Posts
    1,012
    Thanks
    440
    Thanked 171 Times in 132 Posts
    I thought it was an expansion. But the command was jeepme ID, about that im 100% sure

  5. #5
    Assadministrator kung foo man's Avatar
    Join Date
    Jun 2012
    Location
    trailerpark
    Posts
    2,011
    Thanks
    2,102
    Thanked 1,084 Times in 753 Posts
    Hm, do you have already the jeep mod or do you need a jeep mod + the little extension? If you dont have the jeep mod also, there is a United Noobs Vehicle Mod (CTF, Tanks, Jeeps, Planes etc.)
    timescale 0.01

  6. #6
    Brigadier General
    Join Date
    Dec 2012
    Posts
    1,012
    Thanks
    440
    Thanked 171 Times in 132 Posts
    I have the jeep mod, where the jeeps need to be placed in the maps. But i want to let them spawn in front of you and make them rideable

  7. #7
    Global Mossaderator Mitch's Avatar
    Join Date
    Nov 2012
    Posts
    654
    Thanks
    204
    Thanked 450 Times in 305 Posts
    In _jeeps_v1 you have got the function 'spawn_jeep( team )'.
    This function takes care of the spawning of the jeeps. To make it spawn right in front of you it needs a few modifications.

    Current code
    PHP Code:
        origin getRandomSpawnteam,80700 );
        
        
    jeep spawn("script_model"origin );
            
        
    jeep setModelgame["jeep" team] );
        
    jeep show(); 
    You probably need to do more than this
    PHP Code:
        forward anglesToForwardself getPlayerAngles() );
        
    temp vector_scaleforward50);
        
    trace bulletTraceself getOrigin(), self getOrigin() + tempfalseself );
        
    jeep spawn("script_model"trace["position"] );    
        
    jeep setModelgame["jeep" team] );
        
    jeep show(); 
    Last edited by Mitch; 26th May 2013 at 09:37.

  8. The Following 2 Users Say Thank You to Mitch For This Useful Post:

    kung foo man (26th May 2013),Ni3ls (27th May 2013)

  9. #8
    Sergeant serthy's Avatar
    Join Date
    Nov 2012
    Posts
    450
    Thanks
    96
    Thanked 296 Times in 188 Posts
    or write your own vehicle logic, its pretty easy

    >>>LOOK HERE<<<

  10. #9
    Brigadier General
    Join Date
    Dec 2012
    Posts
    1,012
    Thanks
    440
    Thanked 171 Times in 132 Posts
    Serthy thats too hard for me. And the checkCollission( trace ) is missing in your script. I managed to let the jeep spawn in front of me. I used this script as basic. http://codepad.org/r7wlT3D1

    But now the jeep spawns, moves a little bit automatically and explodes after 2 secs :/ I spawn the jeep above the ground.

  11. #10
    Global Mossaderator Mitch's Avatar
    Join Date
    Nov 2012
    Posts
    654
    Thanks
    204
    Thanked 450 Times in 305 Posts
    Quote Originally Posted by Ni3ls View Post
    Serthy thats too hard for me. And the checkCollission( trace ) is missing in your script. I managed to let the jeep spawn in front of me. I used this script as basic. http://codepad.org/r7wlT3D1

    But now the jeep spawns, moves a little bit automatically and explodes after 2 secs :/ I spawn the jeep above the ground.
    I think it would be easier to use the jeep script that some maps use to spawn jeeps. Because this script is made to run without all the other scripts in the vehicle mod.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •