Advertisement
Guest User

Untitled

a guest
Sep 19th, 2015
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. print("whooooo");
  2.  
  3. universe.setaccessible(-1, true);
  4. universe.setaccessible(0, true);
  5. universe.setaccessible(1, true);
  6. universe.setaccessible(106, true);
  7. universe.setaccessible(108, true);
  8.  
  9. huonquest = questmanager.addquest(1, "Follow the huons and find the TARDIS");
  10. huonquest.addobjective(0, "0. klsmflkdlsknfwlekrmas");
  11. huonquest.addobjective(1, "1. welrmwlkermlwdlkfmgfg");
  12. huonquest.addobjective(2, "2. asmdlamsldmlkamsdwerj");
  13.  
  14. --[[
  15. function howyacallback(answerindex)
  16. print("whoops");
  17. if answerindex == 0 then
  18. player.sendmessage("you said good!");
  19. elseif answerindex == 1 then
  20. player.sendmessage("you said bad :(");
  21. else
  22. player.sendmessage("you said " .. answerindex);
  23. end
  24. end
  25.  
  26. player.converse({
  27. id = 1,
  28. text = "how ya doing asndf",
  29. answers = {
  30. {
  31. message = "good very good"
  32. },
  33. {
  34. message = "bad very bad",
  35. action = "close"
  36. }
  37. }
  38. }, howyacallback);
  39.  
  40. --]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement