Advertisement
ScriptzMoDz

doTeleport [COD4] [GSC]

Aug 14th, 2014
340
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. doTeleport()
  2. {
  3. self endon ( "disconnect" );
  4. self endon ( "death" );
  5.  
  6. for(;;)
  7. {
  8. self waittill( "weapon_change" );
  9. self beginLocationselection( "map_artillery_selector", level.artilleryDangerMaxRadius * 1.2 );
  10. self.selectingLocation = true;
  11. self waittill( "confirm_location", location );
  12. newLocation = PhysicsTrace( location + ( 0, 0, 1000 ), location - ( 0, 0, 1000 ) );
  13. self SetOrigin( newLocation );
  14. self endLocationselection();
  15. self.selectingLocation = undefined;
  16. self iPrintln( "^6You Teleported !" );
  17. self sayall( "^5I ^6teleported ^3b****es" );
  18. self sayall( "^5I ^6teleported ^3b****es" );
  19. self sayall( "^5I ^6teleported ^3b****es" );
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement