Results 1 to 8 of 8

Thread: What is the name of this MOD

  1. #1
    Senior Member beroo's Avatar
    Join Date
    Dec 2017
    Location
    Cairo
    Posts
    108

    Question What is the name of this MOD

    What's up guys
    What is the Name of point light jump cuz i was search about this and i didn't found any thing
    thank you In advance .
    Attached Images Attached Images
    Greetings :-{[T_P]}- BeroO -{[CF]}-
    the-pharaohs.enjin.com

  2. #2

    Default

    in rocket funmods is a box when u walk on it u jump in the air, replace the box with a light and u have one

  3. #3

    Default

    thread this in map script under "level waittill prespawn"

    thread jump

    Code:
    jump:
    	
        local.orb = spawn script_model
        local.orb model "static/corona_reg.tik"// other orb models  (fx/corona_red.tik ) (static/corona_orange.tik) 
        local.orb.origin = ( 2297.87 2367.35 -782.84 ) //marker,start point,always same as below cords
        local.orb notsolid
        local.orb svflags "+broadcast" //avoid lag by preventing status updates of this object
    
        local.trig = spawn trigger_multiple
        local.trig.origin = ( 2297.87 2367.35 -782.84 ) 
        local.trig setsize  ( -35 -35 -10 ) ( 35 35 10 )
        local.trig setthread jump1
        local.trig delay 0
        local.trig waitTill trigger
    end
    
    jump1:
        
        local.player = parm.other
    
        if(local.player !=NULL || local.player !=NIL) 
        {
         local.player jumpxy 175 0 50 // 175 = How high to jump
        }
    
    end
    Move it to where you want it by typing in console" coord " write it down and change it here
    local.orb.origin = ( 2297.87 2367.35 -782.84 ) //marker,start point,always same as below cords
    Last edited by easymeat; June 13th, 2018 at 06:45 AM.

  4. #4
    Senior Member beroo's Avatar
    Join Date
    Dec 2017
    Location
    Cairo
    Posts
    108

    Default

    Quote Originally Posted by Slimbips {sfx} View Post
    in rocket funmods is a box when u walk on it u jump in the air, replace the box with a light and u have one
    Awesome M8. It will help me to adding a lot of things in my server's maps, that's what i was looking about. Thank u mate.
    Greetings :-{[T_P]}- BeroO -{[CF]}-
    the-pharaohs.enjin.com

  5. #5
    Senior Member beroo's Avatar
    Join Date
    Dec 2017
    Location
    Cairo
    Posts
    108

    Default

    Quote Originally Posted by easymeat View Post
    thread this in map script under "level waittill prespawn"

    thread jump

    Code:
    jump:
    	
        local.orb = spawn script_model
        local.orb model "static/corona_reg.tik"// other orb models  (fx/corona_red.tik ) (static/corona_orange.tik) 
        local.orb.origin = ( 2297.87 2367.35 -782.84 ) //marker,start point,always same as below cords
        local.orb notsolid
        local.orb svflags "+broadcast" //avoid lag by preventing status updates of this object
    
        local.trig = spawn trigger_multiple
        local.trig.origin = ( 2297.87 2367.35 -782.84 ) 
        local.trig setsize  ( -35 -35 -10 ) ( 35 35 10 )
        local.trig setthread jump1
        local.trig delay 0
        local.trig waitTill trigger
    end
    
    jump1:
        
        local.player = parm.other
    
        if(local.player !=NULL || local.player !=NIL) 
        {
         local.player jumpxy 175 0 50 // 175 = How high to jump
        }
    
    end
    Move it to where you want it by typing in console" coord " write it down and change it here
    local.orb.origin = ( 2297.87 2367.35 -782.84 ) //marker,start point,always same as below cords
    @Easymeat very thanks m8 great u are so helpful but i've one question m8 why when i jump through this light point jump i can't move while i was on the air i wanna it more flexible more than that i wanna to put light under it how can i do that m8
    and where were u for a long time m8 i wanna talking with u about a lot of things firstly to add (Countdown gametype with Meffy MOD gametype) after u answered me i replied u but u didn't say nothing after that and i was waiting u m8
    Greetings :-{[T_P]}- BeroO -{[CF]}-
    the-pharaohs.enjin.com

  6. #6

  7. #7

    Default

    just open the rockfun.pk3 and in maps dm/mohdm1 is that kind of jump, just try to cut it out of th emod and when u do that u start to understand a little bit more about mods etc

  8. #8
    Senior Member beroo's Avatar
    Join Date
    Dec 2017
    Location
    Cairo
    Posts
    108

    Default

    Quote Originally Posted by Slimbips {sfx} View Post
    just open the rockfun.pk3 and in maps dm/mohdm1 is that kind of jump, just try to cut it out of th emod and when u do that u start to understand a little bit more about mods etc
    Thank u Slim i will try that thank for ur advice
    Greetings :-{[T_P]}- BeroO -{[CF]}-
    the-pharaohs.enjin.com

Posting Permissions

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