Advertisement
Guest User

Untitled

a guest
Dec 14th, 2020
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. quest changelook begin
  2. state start begin
  3. when 60003.chat."Transmutation" begin
  4. say_title(mob_name(60003))
  5. say("")
  6. say("Transmutation enables you to permanently change")
  7. say("the appearance of your equipment. The effect is")
  8. say("restricted to the level of your equipment,")
  9. say("however, and the transmutation will be reversed")
  10. say("if you improve the item. Do you want to continue?")
  11. say("")
  12. local confirm = select("Yes", "No")
  13. if confirm == 2 then
  14. return
  15. end
  16.  
  17. setskin(NOWINDOW)
  18. pc.open_changelook(true)
  19. end
  20. end
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement