Woot it works!
ty guys.
Now, for my next trick.. adding in boxes and such. This'll take quite a bit more work, I imagine. What is the best way of going about doing this?
Additionally, Are there any effects I can give to my orbs to make them stand out more? different colors.. glowing.. flashing.. ect?
How about something to make the orb disappear for 10 seconds after someone stepped into it- to restrict followers?
Finally, is there any way I can create an yellow message on the left side of the screen everytime someone hits an orb?
server side transporters
Moderator: Moderators
Use this for adding boxes! Make a call thread above level waittill spawn like -
thread addstuff
then put this under end of main and put what ever you add in it -
Addstuff:
local.static = spawn script_model
local.static model "static/indycrate.tik"
local.static.origin = ( x y z )
local.static.angles = (0 0 0)
local.static solid
thread addstuff
then put this under end of main and put what ever you add in it -
Addstuff:
local.static = spawn script_model
local.static model "static/indycrate.tik"
local.static.origin = ( x y z )
local.static.angles = (0 0 0)
local.static solid
Code: Select all
end
For your message - put this in your teleport thread
iprintlnbold_noloc " Teleporting."
you can also put this at the end of your teleport to block next player. it wont remove the orb thats more complicated.
wait 10
you can remove the orb or make it flash, its more complicated though.
you can hide and show in a loop:)ooops
Use this for adding boxes! Make a call thread above level waittill spawn like -
thread addstuff
Addstuff:
local.static = spawn script_model
local.static model "static/indycrate.tik"
local.static.origin = ( x y z )
local.static.angles = (0 0 0)
local.static solid
end
For your message - put this in your teleport thread
iprintlnbold_noloc " Teleporting."
you can also put this at the end of your teleport to block next player. it wont remove the orb thats more complicated.
wait 10
you can remove the orb or make it flash, its more complicated though.
you can hide and show in a loop something like this threaded under your orb maybe?
Use this for adding boxes! Make a call thread above level waittill spawn like -
thread addstuff
Addstuff:
local.static = spawn script_model
local.static model "static/indycrate.tik"
local.static.origin = ( x y z )
local.static.angles = (0 0 0)
local.static solid
end
For your message - put this in your teleport thread
iprintlnbold_noloc " Teleporting."
you can also put this at the end of your teleport to block next player. it wont remove the orb thats more complicated.
wait 10
you can remove the orb or make it flash, its more complicated though.
you can hide and show in a loop something like this threaded under your orb maybe?