Massassi Forums Logo

This is the static archive of the Massassi Forums. The forums are closed indefinitely. Thanks for all the memories!

You can also download Super Old Archived Message Boards from when Massassi first started.

"View" counts are as of the day the forums were archived, and will no longer increase.

ForumsCog Forum → How to kill the player when he spawns.
How to kill the player when he spawns.
2001-07-06, 12:21 PM #1
Is there any simple command to kill a player?

I need to do this as quickly as possible when he spawns the first time.

Jedi_slayer_1
2001-07-06, 12:28 PM #2
DamageThing(player, 100);

I think that's right.. too lazy to look it up.
2001-07-06, 12:57 PM #3
The first time he joins the game?

startup:

player = GetLocalPlayerThing();
Sleep(2.0);
DamageThing(player, 1000, 0x1, player);

Return;

↑ Up to the top!