hmm komisch wenn ich /helpoff oder so mache und dann /help eingebe kommt immer diese dialog wieso
Hab so
if (strcmp("/help", cmdtext, true) ==0)
{
if(helpActive == 1){
}
else {
ShowPlayerDialog(playerid, helpmenu, DIALOG_STYLE_MSGBOX, "Hilfe", "/Teleport\n/Neon", "OK", "ABBRUCH");
}
return 1;
}
if (strcmp("/helpoff", cmdtext, true, 12) == 0)
{
if(helpActive == 0) helpActive = 1;
else helpActive = 0;
return 1;
}
Edit: Codes eingefügt