[Tutorial] Crear NPC con funciones
#8

Buen tutorial amigo. Te falto colocar el GetPlayerID, acб lo dejo:
Код:
stock GetPlayerID(const playername[], partofname=0)
{
   new i;
   new playername1[64];
   for (i=0;i<MAX_PLAYERS;i++)
   {
      if (IsPlayerConnected(i))
      {
         GetPlayerName(i,playername1,sizeof(playername1));
         if (strcmp(playername1,playername,true)==0)
         {
            return i;
         }
      }
   }
   new correctsigns_userid=-1;
   new tmpuname[128];
   new hasmultiple=-1;
   if(partofname)
   {
      for (i=0;i<MAX_PLAYERS;i++)
      {
         if (IsPlayerConnected(i))
         {
            GetPlayerName(i,tmpuname,sizeof(tmpuname));

            if(!strfind(tmpuname,playername1[partofname],true, 0))
            {
               hasmultiple++;
               correctsigns_userid=i;
            }
            if (hasmultiple>0)
            {
               return -2;
            }
         }
      }
   }
   return correctsigns_userid;
}
Reply


Messages In This Thread
[Tutorial] Crear NPC con funciones - by Trenico - 16.07.2010, 19:32
Re: [Tutorial] Crear NPC con funciones - by MrDeath537 - 16.07.2010, 20:39
Respuesta: [Tutorial] Crear NPC con funciones - by xenowort - 16.07.2010, 22:36
Re: [Tutorial] Crear NPC con funciones - by Trenico - 16.07.2010, 23:57
Re: [Tutorial] Crear NPC con funciones - by Zamaroht - 17.07.2010, 00:29
Re: [Tutorial] Crear NPC con funciones - by TheChaoz - 17.07.2010, 01:11
Re: [Tutorial] Crear NPC con funciones - by CristianTdj - 19.07.2010, 21:38
Re: [Tutorial] Crear NPC con funciones - by RyanForelli - 20.07.2010, 14:58
Re: [Tutorial] Crear NPC con funciones - by CristianTdj - 20.07.2010, 19:29
Re: [Tutorial] Crear NPC con funciones - by RyanForelli - 20.07.2010, 19:44

Forum Jump:


Users browsing this thread: 3 Guest(s)