Advertisement
stigs

Untitled

Oct 26th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. [ScriptEntry(Entry = 130034)]
  2. public static void NorthGeneral(Player player, byte option) //1354 900 677
  3. {
  4. switch (option)
  5. {
  6. case 0:
  7. {
  8. Dialog.SendDialog(player, "You have reached the end of the labyrinth. Ready to go back to TwinCity?");
  9. Dialog.SendOption(player, "I'd like to go back to TwinCity.", 1);
  10. Dialog.SendOption(player, "Just passing by.", 255);
  11. Dialog.Finish(player);
  12. break;
  13. }
  14. case 1:
  15. {
  16. player.Teleport(1002, 431, 379);
  17. break;
  18. }
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement