Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Shades and phantoms are a bit different. Shades consist of two parts: the base (which is a device_machine) and the ball turret. When naming your shade turret, suffix it with _base or _ball, to make it easier to identify. Do the same things as above, except in the spot it says for the names, put the ball name first and a comma, then the base name. You don't have to do this for the PLAYER_UPDATE, just put the shade ball name.
- Phantoms are the most different from them all. They consist of six parts: the base vehicle, the gravity lift, the two troop doors, and then the two gun doors (the middle of the troop doors). Each one needs to be specifically suffixed. When placing the doors in Sapien, suffix one with '_troop_l' and the other with '_troop_r'. Same thing with the gun doors, except suffix them with '_gun_l' and '_gun_r'. The gravity lift needs a suffix of '_grav'. I'm pretty sure you have to name them the same as the base vehicle, and adding the suffixes on to that name.
- Example:
- • shade_name_ball
- • shade_name_base
- • VEHICLE_UPDATE_SHADE(shade_name_ball, shade_name_base)
- Example:
- • phantom_name
- • phantom_name_grav
- • phantom_name_troop_r
- • phantom_name_troop_l
- • phantom_name_gun_r
- • phantom_name_gun_l
- After doing that, just put the base name in the scripts like you would any other vehicle. You don't need a PLAYER_UPDATE for it, even though the default player can drive them (yes, they can!)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement