[ajuda]player Morre em uma area
#4

Quote:
Originally Posted by rjjj
View Post
Vocк pode colocar assim:

pawn Code:
//No Topo do gm :

new SanFierroPos[MAX_PLAYERS];

//Seu stock ficaria :

stock IsPlayerInSanFierro(playerid)
{
    new Float:x,Float:y,Float:z;
    GetPlayerPos(playerid, x, y, z);
    if(x >= -1377.989 && y >= -2989.536 && x <= 1599.869 && y <= -1004.297)
    {
    SanFierroPos[playerid] = 1;
    return 1;
    }
    else return 0;
}


//No OnPlayerDeath adicione  :

  if(SanFierroPos[playerid] = 1)
  {
  SetPlayerPos(playerid,268.5777,1857.9351,9.8133);//Aqui voce coloca a sua cordenada
  SanFierroPos[playerid] = 0;
  return 1;
  }
man,

nao seria assim:

pawn Code:
//No Topo do gm :

new SanFierroPos[MAX_PLAYERS];

//Seu stock ficaria :

stock IsPlayerInSanFierro(playerid)
{
    new Float:x,Float:y,Float:z;
    GetPlayerPos(playerid, x, y, z);
    if(x >= -1377.989 && y >= -2989.536 && x <= 1599.869 && y <= -1004.297)
    {
    SanFierroPos[playerid] = 1;
    return 1;
    }
    else return 0;
}


//isso em Spawn:

  if(SanFierroPos[playerid] = 1)
  {
  SetPlayerPos(playerid,268.5777,1857.9351,9.8133);//Aqui voce coloca a sua cordenada
  SanFierroPos[playerid] = 0;
  return 1;
  }

//no deaath vai o IsPlayerInSanFierro q dai ativa o SanFierroPos[playerid]
acho q tu nao deveria ter usado o SanFierroPos[playerid] na stock e sim no death
Reply


Messages In This Thread
[ajuda]player Morre em uma area - by brunogysin - 14.11.2010, 13:34
AW: [ajuda]player Morre em uma area - by dainius - 14.11.2010, 13:36
Re: [ajuda]player Morre em uma area - by rjjj - 14.11.2010, 14:00
Respuesta: Re: [ajuda]player Morre em uma area - by BiieL - 14.11.2010, 14:59
Re: [ajuda]player Morre em uma area - by ipsBruno - 14.11.2010, 15:08

Forum Jump:


Users browsing this thread: 1 Guest(s)