Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
teleporting at death
Mackiiboy Offline
Member

Posts: 101
Threads: 7
Joined: Jan 2012
Reputation: 11
#2
RE: teleporting at death

(04-06-2012, 08:52 AM)zombiehacker595 Wrote: what would i have to do to teleport the player to a different map after death
.
You can set up a checkpoint that calls a function when you die. Put in a mapchange into that function.


void CheckPoint (string& asName, string& asStartPos, string& asCallback, string& asDeathHintCat, string& asDeathHintEntry);

Sets a checkpoint at which the player will respawn in case he dies.
Callback syntax: void MyFunc(string &in asName, int alCount)
Count is 0 on the first checkpoint load!

asName
- the internal name
asStartPos - the name of the StartPos in the editor
asCallback - the function to call when the player dies/respawns
asDeathHintCat - the category of the death hint message to be used in the .lang file
asDeathHintEntry - the entry in the .lang file

AND

void ChangeMap(string& asMapName, string& asStartPos, string& asStartSound, string& asEndSound);

Immediatly loads another map.

asMapName - the file to load
asStartPos - the name of the StartPos on the next map
asStartSound - the sound that is played when the change starts
asEndSound - the sound that is played when the new map is loaded


04-06-2012, 09:26 AM
Website Find


Messages In This Thread
teleporting at death - by zombiehacker595 - 04-06-2012, 08:52 AM
RE: teleporting at death - by Mackiiboy - 04-06-2012, 09:26 AM



Users browsing this thread: 1 Guest(s)