25.06.2013, 15:19
(
Последний раз редактировалось Deathstalker; 25.06.2013 в 15:23.
Причина: Forgot to use pawn instead of code.
)
Try this:
pawn Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if (dialogid == 1)
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
CreateObject(strval(inputtext), x, y, z, 0.0, 0.0, 0.0, 0.0);
}
return 1;
}