Call of Duty 4: Teleporter

From COD Modding & Mapping Wiki
Revision as of 16:19, 16 October 2008 by Zeroy (talk | contribs) (New page: ''By Col.Mac'' Image:Nutshell.png How to make a player teleport. In the editor, go to your departure point, draw out a decent size brush and texture it trigger, right click in 2d vie...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

By Col.Mac

How to make a player teleport.

In the editor, go to your departure point, draw out a decent size brush and texture it trigger, right click in 2d view, go down and make it trigger_multiple. with the trigger still selected press n and enter these values

Key = target Value = gohere 
Key = targetname Value = enter 

Press n again to close the entity box, thats it for the trigger, press Esc.

Navigate your way in the editor to where you want to be teleported to. Right click in the 2d view and create a script_origin (a red cube should appear) With that still selected, press n and enter these values Key = targetname Value = gohere Press n again to close the entity box You can rotate the red cube until the arrow faces the direction you wish to be facing when teleported. have both selected and hit w to weld them Press esc.

If you have things correct you should now see a red line connecting trigger and red cube.

Compile,

Make a .gsc containing this script (just call it teleport)


main() {

 entTransporter = getentarray("enter","targetname");
 if(isdefined(entTransporter))
  {
   for(lp=0;lp}

}


transporter() {

 while(true)
 {
  self waittill("trigger",other);
  entTarget = getent(self.target, "targetname");
  wait(0.10);
  other setorigin(entTarget.origin);
  other setplayerangles(entTarget.angles);
  wait(0.10);
 }

}


Dont forget to call up this .gsc in your main .gsc

maps\mp\_teleport::main(); 

For your Zone File:

rawfile,maps/mp/_teleport.gsc

Greets dadofazz / Kill3r (who found it via azz.. who found it via unknown sources)