22.08.2011, 12:36
I am making a weapon dialog. When i compile it in pawno no errors show up, but when i use the /getweapon command on my server nothing happens. it doesn't say server unknown command, it just does nothing. i have looked over the code and i see no reson why it should work
here is the code:
if there is somethings wrong with it, can someone please tell me what it is?
here is the code:
Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
new cmd[256];
new idx;
cmd=strtok(cmdtext,idx);
if(strcmp(cmd,"/getweapon",true)==1)
{
ShowPlayerDialog(playerid,DIALOG_WEAPONSHOP, DIALOG_STYLE_LIST, "Weapon Shop", "9MM $1000,\nAK47 $3000,\nM4 $3000,\nKatana $750,\nDesert Eagle $2000", "Buy", "Cancel");
return 1;
}
return 0;
}
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
switch(dialogid)
{
case DIALOG_WEAPONSHOP:
{
if(response)
{
switch(listitem)
{
case 0:
{
GivePlayerWeapon(playerid,22,100);
}
case 1:
{
GivePlayerWeapon(playerid, 30, 1000);
}
case 2:
{
GivePlayerWeapon(playerid,31, 1000);
}
case 3:
{
GivePlayerWeapon(playerid,8, -1);
}
}
}
}
}
return 1;
}


