24.11.2011, 07:59
i want when someone type /teleports to show all teleports like
/teleports:
bayside,dilimore.....
/teleports:
bayside,dilimore.....
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
switch(dialogid) // Lookup the dialogid
{
case 1:
{
if(!response)
{
SendClientMessage(playerid, 0xFF0000FF, "You cancelled.");
return 1; // We processed it
}
switch(listitem) // This is far more efficient than using an if-elseif-else structure
{
case 0: // Listitems start with 0, not 1
{
// TELEPORT TO BAYSIDE
}
case 1:
{
// TELEPORT TO DILIMORE
}
case 2:
{
//TELEPORT TO OTHER ...
}
// Add the rest of your listitems for dialog 1 here
}
}
// Add the rest of your dialogs here
}
return 0; // If you put return 1 here the callback will not continue to be called in other scripts (filterscripts, etc.).
}