[Tutorial] Crear NPC con funciones
#1

----------------------------------
Reply
#2

El tuto esta bastante bueno, me costo entenderte por que abrevias mucho :\. Pero el tuto esta bien. Felicitaciones
Reply
#3

El tuto esta bien, lastima tu super spam del principio, elimina el link porque te van a borrar el post.
Reply
#4

uy si no me abia dado duenta ya lo edite
Reply
#5

No se considera spam si el link tiene relaciуn directa con el tema, podйs dejarlo si querйs.
Reply
#6

esta bueno el tuto, bien explicado.

PD: podrias agregar esa funcion ("SetPlayerFacingPlayer") a al topic de funciones utiles ya que muchos por ahi no la conoscan, por ejemplo yo no la conocia...
Reply
#7

Vale, estб bien pero cuida la ortografнa...
Reply
#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
#9

Quote:
Originally Posted by RyanForelli
Посмотреть сообщение
Buen tutorial amigo. Te falto colocar el GetPlayerID, acб lo dejo:
El include a_samp ya tiene su propia funciуn para obtenerlo.
Reply
#10

Quote:
Originally Posted by CristianTdj
Посмотреть сообщение
El include a_samp ya tiene su propia funciуn para obtenerlo.
Nop, acabo de buscarlo en el include y no estб.
Y lo tengo actualizado
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)