Posted by Lord Of Sith on February 13, 1998 at 17:53:48:
Well.... It works now. I tested it this morning with commented out
setlife etc. And it works.How would U fix the cog???
Thankyou for your help!It is Greatly Appreciated.
Werd.
# Jedi Knight Cog Script
#
# teleporter cog
#
# modified FORCEPOWER Script - Force Teleport
#
# [WERD]
#
# (C) 1998 werd!
symbols
thing position0
sector teleporter mask=0xfff
int dummy=-1 local
int player=0 local
template teleport_particles=+telesparks local
sound teleportsnd=ForceThrow01.WAV
message entered
end
# ========================================================================================
code
entered:
player=GetSourceRef();
if(GetThingType(player) == 2)
{
#PrintInt(player);
# dummy = CreateThingAtPos(teleport_particles, GetThingSector(player), GetThingPos(player), '0 0 0');
# SetLifeLeft(dummy, 1);
TeleportThing(player, position0);
# dummy = CreateThingAtPos(teleport_particles, GetThingSector(player), GetThingPos(player), '0 0 0');
# PlaySoundThing(teleportsnd, player, 1.0, -1, -1, 0x180);
Return;
}
else
if(GetThingType(player) == 10)
{
#PrintInt(player);
# dummy = CreateThingAtPos(teleport_particles, GetThingSector(player), GetThingPos(player), '0 0 0');
# SetLifeLeft(dummy, 1);
TeleportThing(player, position0);
# dummy = CreateThingAtPos(teleport_particles, GetThingSector(player), GetThingPos(player), '0 0 0');
# PlaySoundThing(teleportsnd, player, 1.0, -1, -1, 0x180);
Return;
}
Return;
# ........................................................................................
end