if (strcmp(cmdtext, "/drink", true) == 0)
{
if(IsPlayerConnected(playerid))
{
ShowPlayerDialog(playerid, DRINKS, DIALOG_STYLE_LIST, "Pica","Voda ($1)\nSok($2)\nSampanjac($12)\nVodka ($16)", "Pice", "Otkazi");
}
return 1;
}i na public OnDialogResponse
if(dialogid == DRINKS)
{
if(response)
{
if(listitem == 0) // Voda
{
GetPlayerHealth(playerid, health);
if(health < 100)
{
SafeGivePlayerMoney(playerid, - 1);
SetPlayerHealth(playerid, health + 50);
GetPlayerName(playerid, sendername, sizeof(sendername));
format(string, sizeof(string), "* %s je popio casu vode.", sendername);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
}
}
if(listitem == 1) // Sok
{
GetPlayerHealth(playerid, health);
if(health < 100)
{
SafeGivePlayerMoney(playerid, - 2);
SetPlayerHealth(playerid, health + 50);
GetPlayerName(playerid, sendername, sizeof(sendername));
format(string, sizeof(string), "* %s je kupio sok i popio.", sendername);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
}
}
if(listitem == 2) // Sampanjac
{
GetPlayerHealth(playerid, health);
if(health < 100)
{
SafeGivePlayerMoney(playerid, - 12);
SetPlayerHealth(playerid, health + 50);
GetPlayerName(playerid, sendername, sizeof(sendername));
format(string, sizeof(string), "* %s je kupio bocu sampanjca i popio.", sendername);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
}
}
if(listitem == 3) // Vodka
{
GetPlayerHealth(playerid, health);
if(health < 100)
{
SafeGivePlayerMoney(playerid, - 16);
SetPlayerHealth(playerid, health + 50);
GetPlayerName(playerid, sendername, sizeof(sendername));
format(string, sizeof(string), "* %s je kupio deci vodke i popio.", sendername);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
}
}
}
return 1;
}i definirao sam ovo drinks ovako:
#define DRINKS 5kad stisnem na "vodu" dopuni mi se heal i pise da sam popio casu vode, ali problem je u tom sto kad stisnem na ostalo "sampanjac" "vodka" uopce mi nece dialog odgovoriti. neznam u cem je problem.
pa ak bi mogli pomoci, bio bih vam zahvalan.
hvala unaprijed
