Solved!
#8

Change this:
pawn Код:
public startpop(playerid)
{

  if(IsPlayerNPC(playerid))
  {
    new npcname[MAX_PLAYER_NAME];
    GetPlayerName(playerid, npcname, sizeof(npcname));
       if(!strcmp(npcname, "strartpop", true))
    {
       SetPlayerChatBubble(playerid, "Welkom in ******!", 0xFF0000FF, 100.0, 100000);

    }
    return 1;
  }
  return 1;

}
To this:
pawn Код:
public startpop()
{
  for(new playerid;playerid<MAX_PLAYERS;playerid++)
  {
    if(IsPlayerNPC(playerid))
    {
      new npcname[MAX_PLAYER_NAME];
      GetPlayerName(playerid, npcname, sizeof(npcname));
      if(!strcmp(npcname, "strartpop", true))
        SetPlayerChatBubble(playerid, "Welkom in ******!", 0xFF0000FF, 100.0, 100000);
    }
  }
  return 1;
}
Reply


Messages In This Thread
Solved! - by snabbo - 14.01.2010, 16:35
Re: [HELP] Is this possible? - by snabbo - 14.01.2010, 16:37
Re: [HELP] Is this possible? - by Jakku - 14.01.2010, 16:48
Re: [HELP] Is this possible? - by Correlli - 14.01.2010, 16:57
Re: [HELP] Is this possible? - by snabbo - 14.01.2010, 17:15
Re: [HELP] Is this possible? - by Correlli - 14.01.2010, 17:21
Re: [HELP] Is this possible? - by snabbo - 14.01.2010, 17:37
Re: [HELP] Is this possible? - by MenaceX^ - 14.01.2010, 17:48
Re: [HELP] Is this possible? - by snabbo - 14.01.2010, 17:56
Re: [HELP] Is this possible? - by MadeMan - 14.01.2010, 18:12

Forum Jump:


Users browsing this thread: 2 Guest(s)