[Tutorial]Como indexar [idx]
#5

Disculpame, pero eso solo ocurre en comandos, por que lo explicaste solamente en comandos, y si no lo tengo en un comando ejemplo:


pawn Код:
#include <a_samp>

new Shop[128];
#define ShopDialogID 8172

public OnFilterScriptInit()
{
    print("\n--------------------------------------");
    print("      Probandoo        ");
    print("--------------------------------------\n");
    Shop = CreatePickup(1212, 0, 0.0, 0.0, 4.0);
    Create3DTextLabel("Minimercado",0x008080FF,0.0, 0.0, 4.0,40.0,-1,0);
    return 1;
}


public OnPlayerPickUpPickup(playerid, pickupid)
{
  if(pickupid == Shop)
  {
  ShowPlayerDialog(playerid, ShopDialogID, DIALOG_STYLE_LIST, "Bievenido al Shop", "Cigarrillos [$50]\nPrueba\nPrueba 2", "Comprar", "Cancelar");
  }
  return 1;
}

public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
   if(response)
    {
    switch(dialogid)
    {
    case ShopDialogID:
    {
    switch(listitem)
    {
    case 0:
    {
    SendClientMessageToAll(0xFF00FFFF, "Probandooooooooooooooo");
    }
    }
    }
    }
    }
    return 1;
}
Ahi tira error en la variable Shop :/ por quй ? (Igualmente se soluciona quitando las celdas, pero queria saber por que)
Reply


Messages In This Thread
[Tutorial]Como indexar [idx] - by Adoniiz - 17.06.2010, 21:12
Re: [Tutorial]Como indexar [idx] - by MedinaRockz - 17.06.2010, 22:47
Re: [Tutorial]Como indexar [idx] - by Adoniiz - 17.06.2010, 23:16
Re: [Tutorial]Como indexar [idx] - by ConecCionMex - 17.06.2010, 23:18
Respuesta: [Tutorial]Como indexar [idx] - by [Nikk] - 17.01.2012, 08:56
Respuesta: [Tutorial]Como indexar [idx] - by TheChaoz - 17.01.2012, 09:18
Respuesta: [Tutorial]Como indexar [idx] - by [Nikk] - 17.01.2012, 09:24
Respuesta: [Tutorial]Como indexar [idx] - by TheChaoz - 17.01.2012, 09:26
Respuesta: [Tutorial]Como indexar [idx] - by [Nikk] - 17.01.2012, 09:27

Forum Jump:


Users browsing this thread: 2 Guest(s)