Hi Everyone!
I am trying to set up a teleporter; But its not working properly.
It does recognize that something is hitting it, cause it does beep; However, it doesnt send the 'you' pointer to the location its told to go to.
function tele(){
if(event_type == event_impact){
you.x = my.skill1;you.y = my.skill2;you.pan = my.skill3;
beep();
}
}
action teleporter{
my.invisible = on;
my.enable_impact = on;
my.event = tele;
}
what is missing?
Thank you for your valuable time
