Ayuda con dini.
#7

Quote:
Originally Posted by JetLi
Yo tengo asi, y me funciona. Nada mas le tenes que dar el Comando para seleccionar Skin y nada mas.
Espero que te funcione

Код:
public OnPlayerSpawn(playerid)
{
  	new Nombre[MAX_PLAYERS];
  new file[100];
  GetPlayerName(playerid, Nombre, sizeof(Nombre));
  format(file, sizeof(file), "%s.ini", Nombre);

  if(fexist(file))
  {
  SetPlayerSkin(playerid, dini_Int(file, "Skin"));
  }
Код:
public OnPlayerDisconnect
{
 
  new Nombre[MAX_PLAYERS];
  new file[100];
  GetPlayerName(playerid, Nombre, sizeof(Nombre));
  format(file, sizeof(file), "%s.ini", Nombre);

  if(fexist(file))
  {
  dini_IntSet(file, "Skin", GetPlayerSkin(playerid));
  }
  else
  {
  dini_Create(file);
  dini_IntSet(file, "Skin", GetPlayerSkin(playerid));
  }
No funciona.
Reply


Messages In This Thread
Ayuda con dini. - by CristianTdj - 26.05.2010, 18:31
Re: Ayuda con dini. - by xenowort - 26.05.2010, 18:59
Re: Ayuda con dini. - by Cesar_Biker - 26.05.2010, 19:01
Re: Ayuda con dini. - by CristianTdj - 26.05.2010, 20:46
Re: Ayuda con dini. - by CristianTdj - 29.05.2010, 20:53
Re: Ayuda con dini. - by JetLi - 30.05.2010, 01:00
Re: Ayuda con dini. - by CristianTdj - 30.05.2010, 13:37
Re: Ayuda con dini. - by JetLi - 30.05.2010, 21:14
Re: Ayuda con dini. - by TheChaoz - 30.05.2010, 21:39
Re: Ayuda con dini. - by Cesar_Biker - 30.05.2010, 22:08

Forum Jump:


Users browsing this thread: 1 Guest(s)