Como crear este menu - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Español/Spanish (
https://sampforum.blast.hk/forumdisplay.php?fid=29)
+---- Thread: Como crear este menu (
/showthread.php?tid=146997)
Como crear este menu -
Jesus^ - 10.05.2010
Hola amigos.. me preguntaba si alguno de ustedes saben como crear este menu:
Re: Como crear este menu -
TheChaoz - 10.05.2010
pawn Код:
new Menu:MiMenu;
public OnGameModeInit()
{
MiMenu = CreateMenu("Menu Tienda", 1, 100.0, 200.0, 100.0);
AddMenuItem(MiMenu, 0, "Telйfono Mйvil ($100)");
AddMenuItem(MiMenu, 0, "Agenda Telefуnica ($20)");
AddMenuItem(MiMenu, 0, "Condon ($2)");
AddMenuItem(MiMenu, 0, "Pollo ($10)");
AddMenuItem(MiMenu, 0, "Pizza Congelada ($10)");
return 1;
}
public OnGameModeExit()
{
DestroyMenu(MiMenu);
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp("/menu", cmdtext, true) == 0){
return ShowMenuForPlayer(MiMenu, playerid);
}
return 0;
}
public OnPlayerSelectedMenuRow(playerid, row)
{
new Menu:CurrentMenu = GetPlayerMenu(playerid);
if(CurrentMenu == MiMenu){
switch(row){
case 0:
{
//acciуn para el 1є item
}
case 1:
{
//acciуn para el 2є item
}
case 2:
{
//acciуn para el 3є item
}
case 3:
{
//acciуn para el 4є item
}
case 4:
{
//acciуn para el 5є item
}
}
}
return 1;
}
espero que te sirva
Re: Como crear este menu -
Jesus^ - 10.05.2010
Ese creo que es este menu
yo quiero que sea igual al de la primera imagen xD!
Re: Como crear este menu -
Zamaroht - 10.05.2010
Es un sistema de Textdraws. Es un sistema bastante complejo de hacer, tenйs que saber usar funciones y callbacks relacionadas con keys, y manejarte muy bien con textdraws en si. Creo que habнa visto un filterscript en la secciуn en inglйs que servнa para crear menъs facilmente con textdraws, buscalo.
Re: Como crear este menu -
Jesus^ - 10.05.2010
Quote:
Originally Posted by Zamaroht
Creo que habнa visto un filterscript en la secciуn en inglйs que servнa para crear menъs facilmente con textdraws, buscalo.
|
WTF! Hay mas de 2000 FS Posteados xD! Pero Buscare...
Re: Como crear este menu -
Zamaroht - 10.05.2010
Quote:
Originally Posted by Jesus^
Quote:
Originally Posted by Zamaroht
Creo que habнa visto un filterscript en la secciуn en inglйs que servнa para crear menъs facilmente con textdraws, buscalo.
|
WTF! Hay mas de 2000 FS Posteados xD! Pero Buscare...
|
Tambiйn hay una barra de bъsqueda arriba a la derecha :P
Re: Como crear este menu -
Jesus^ - 10.05.2010
Quote:
Originally Posted by Zamaroht
Quote:
Originally Posted by Jesus^
Quote:
Originally Posted by Zamaroht
Creo que habнa visto un filterscript en la secciуn en inglйs que servнa para crear menъs facilmente con textdraws, buscalo.
|
WTF! Hay mas de 2000 FS Posteados xD! Pero Buscare...
|
Tambiйn hay una barra de bъsqueda arriba a la derecha :P
|
Sip, pero porque nombre buscar? xD!
Re: Como crear este menu -
Cesar_Biker - 10.05.2010
FS menu textdraw ?