Hallo
Ich habe mir einen dialog erstellt und zwar einen wo man sich waffen besorgen kann
nachdem ich alles fertig hatte versuchte ich auf den server zu joinen
schön und gut doch wenn ich mein passwort eingegeben habe kickt es mich sofort?
könnte das an dem dialog liegen?
if(dialogid == WEAPON)
{
if(response) // If they clicked 'Select' or double-clicked a weapon
{
// Give them the weapon
if(listitem == 0) // They selected the first item - Desert Eagle
{
GivePlayerWeapon(playerid, 24,3000); // Give them a desert eagle
}
if(listitem == 1) // They selected the second item - AK-47
{
GivePlayerWeapon(playerid, 30,3000); // Give them an AK-47
}
if(listitem == 2) // They selected the third item - Desert Eagle
{
GivePlayerWeapon(playerid, 27,3000); // Give them a Combat Shotgun
}
}
if(response ==1)
{
SCM(playerid,Blau,"Sie haben das menü verlassen!");
}
return 1; // We handled a dialog, so return 1. Just like OnPlayerCommandText.
}