12-16-2014, 11:33 PM | #1 |
Nade Whore
Server Owner
Beta Tester Join Date: Sep 2007
Location: Oklahoma
Class/Position: Scout/Soldier Gametype: CTF/TDM Affiliations: blunt. Moto Posts Rated Helpful 128 Times
|
Speed boost lua
For the purposes of my new map, I want to create a boost/lift that shoots people from the corners of my map upwards and towards the center. So a 45 degree angle horizontally and depending on what works best, somewhere between 45-75 degrees vertically.
I've been using this code until now: Code:
base_jump = trigger_ff_script:new({ pushz = 0, pushx = 0 }) function base_jump:ontouch( trigger_entity ) if IsPlayer( trigger_entity ) then local player = CastToPlayer( trigger_entity ) local playerVel = player:GetVelocity() playerVel.z = self.pushz playerVel.x = self.pushx player:SetVelocity( playerVel ) end end player_launch = base_jump:new({ pushz = 0, pushx = 1000 }) |
|
12-17-2014, 12:43 AM | #2 |
Stuff Do-er
Lua Team
Wiki Team Fortress Forever Staff |
There are many ways to approach this. Here are two:
1) Give each trigger a different name. This is what I do in my ricochet map: Code:
base_jump = trigger_ff_script:new({ pushx = 0, pushy = 0, pushz = 0 }) function base_jump:ontouch( trigger_entity ) if IsPlayer( trigger_entity ) then local player = CastToPlayer( trigger_entity ) player:SetVelocity( Vector( self.pushx, self.pushy, self.pushz ) ) entity:EmitSound("ricochet.triggerjump") end end -- standard jump_standard_north = base_jump:new({ pushx = 0, pushy = 700, pushz = 400 }) jump_standard_east = base_jump:new({ pushx = 700, pushy = 0, pushz = 400 }) jump_standard_south = base_jump:new({ pushx = 0, pushy = -700, pushz = 400 }) jump_standard_west = base_jump:new({ pushx = -700, pushy = 0, pushz = 400 }) -- etc... Code:
local base_launch_towards_target = trigger_ff_script:new({ horiz_push = 0, vert_push = 0, target = "" }) function base_launch_towards_target:ontouch( trigger_entity ) if IsPlayer( trigger_entity ) then local player = CastToPlayer( trigger_entity ) local target = GetEntityByName( self.target ) if not target then return end local dir = target:GetOrigin() - player:GetOrigin() -- zero out the z value so that only horizontal direction matters dir.z = 0 dir:Normalize() player:SetVelocity( Vector(dir.x * self.horiz_push, dir.y * self.horiz_push, self.vert_push) ) end end player_launch = base_launch_towards_target:new({ horiz_push = 1000, vert_push = 500, target="target_name" }) EDIT: Didn't think the target code through; made some minor adjustments so that the vertical push is constant rather than influenced by the difference in height between the player and the target
__________________
#FF.Pickup ยค Fortress-Forever pickups My Non-official Maps Released FF_DM_Squeek - FF_2Mesa3_Classic - FF_Siege_Classic Beta FF_Myth - FF_Redlight_Greenlight Sick of the people on the internet, always moanin'. They just moan. - Karl Pilkington Last edited by squeek.; 12-17-2014 at 05:00 AM. |
2 members found this post helpful. |
12-17-2014, 04:54 AM | #3 |
Nade Whore
Server Owner
Beta Tester Join Date: Sep 2007
Location: Oklahoma
Class/Position: Scout/Soldier Gametype: CTF/TDM Affiliations: blunt. Moto Posts Rated Helpful 128 Times
|
awesome! thanks
|
|
12-21-2014, 11:22 AM | #4 |
Join Date: Mar 2013
Location: England
Posts Rated Helpful 81 Times
|
mmm or use a trigger_push brush and set angles/speed ?
new map moto ?
__________________
Compile error: Leaf portal saw into Cluster Phuck |
|
12-21-2014, 01:06 PM | #5 |
Nade Whore
Server Owner
Beta Tester Join Date: Sep 2007
Location: Oklahoma
Class/Position: Scout/Soldier Gametype: CTF/TDM Affiliations: blunt. Moto Posts Rated Helpful 128 Times
|
That doesn't seem to work Headz. Plus, then I have to deal with the speed clamping errors (which can be removed via a plugin, but still)
|
|
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
|
|