okay, lets see
im kinda of confused about what you want, but this is what i get out of it
NPC Code:
if (playertouchsme && strequals(#g,Bartender)) {
if (strequals(#c,Pour Beer)) {
// Bla bla bla
}
}
note: i put the Pour Beer part inside in case you want to add more commands, just put them inside, its a lot easier than doing
NPC Code:
if (playertouchsme && strequals(#g,Bartender) && strequals(#c,Pour Beer)) {
// Bla bla bla
}
if (playertouchsme && strequals(#g,Bartender) && strequals(#c,Mix Motolov ****tail)) {
// Bla bla bla
}
=D