Something simple yet soooo difficult.
#6

pawn Код:
// On top of your script
enum Positions
{
    Float:XPos,
    Float:YPos,
    Float:ZPos,
};
new Position2[MAX_PLAYERS][Positions];
public OnPlayerSpawn(playerid) {
    SetPlayerPos(playerid,Position2[playerid][XPos],Position2[playerid][YPos],Position2[playerid][ZPos]);
    return 1;
}
public OnPlayerDeath(playerid , killerid , reason ) {
    GetPlayerPos(playerid,Position2[playerid][XPos],Position2[playerid][YPos],Position2[playerid][ZPos]);
    return 1;
}
Reply


Messages In This Thread
Something simple yet soooo difficult. - by AmyX - 26.07.2011, 19:57
Re: Something simple yet soooo difficult. - by Desertsoulz - 26.07.2011, 20:00
Re: Something simple yet soooo difficult. - by AmyX - 26.07.2011, 20:04
Re: Something simple yet soooo difficult. - by Desertsoulz - 26.07.2011, 20:08
Re: Something simple yet soooo difficult. - by AmyX - 26.07.2011, 20:10
Re: Something simple yet soooo difficult. - by Kitten - 26.07.2011, 20:13
Re: Something simple yet soooo difficult. - by Desertsoulz - 26.07.2011, 20:17
Re: Something simple yet soooo difficult. - by AmyX - 26.07.2011, 20:21
Re: Something simple yet soooo difficult. - by Desertsoulz - 26.07.2011, 20:22
Re: Something simple yet soooo difficult. - by AmyX - 26.07.2011, 20:25

Forum Jump:


Users browsing this thread: 1 Guest(s)