Advertisement
Guest User

PT-BR

a guest
Dec 15th, 2015
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. -----------------------------------------------
  2. -- Justsik Mt2 - Quests exclusivas PT-BR
  3. -- By Darkath.
  4. -- Traduzido Por: Darkath
  5. ------------------------------------------------
  6. quest tempo_online begin
  7. state start begin
  8. when name.server_timer("uma_hora" , 3600 ) begin
  9. say_title("Olá "..pc.get_name())
  10. say ("Você já tem 1 hora online!")
  11. say ("E como recompensa por ficar online tanto tempo,")
  12. say ("Você recebeu como prêmio:")
  13. say ("Tesouro do Chefe Orc")
  14. say_item_vnum(50070)
  15. pc.give_item2("50070", 1)
  16. end
  17. when name.server_timer("duas_hora" , 7200 ) begin
  18. say_title("Olá "..pc.get_name())
  19. say ("Você já tem 2 horas online!")
  20. say ("E como recompensa por ficar online tanto tempo,")
  21. say ("Você recebeu como prêmio:")
  22. say ("Tesouro da Aranha Rainha")
  23. say_item_vnum(50073)
  24. pc.give_item2("50073", 1)
  25. end
  26. when name.server_timer("tres_hora" , 10800 ) begin
  27. say_title("Olá "..pc.get_name())
  28. say ("Você já tem 3 horas online!")
  29. say ("E como recompensa por ficar online tanto tempo,")
  30. say ("Você recebeu como prêmio:")
  31. say ("Tesouro do Nove Caudas")
  32. say_item_vnum(50077)
  33. pc.give_item2("50077", 1)
  34. end
  35. when name.server_timer("quatro_hora" , 18000 ) begin
  36. say_title("Olá "..pc.get_name())
  37. say ("Você já tem 5 horas online!")
  38. say ("Você é realmente um viciado!")
  39. say ("E como recompensa por ficar online tanto tempo,")
  40. say ("Você recebeu como prêmio:")
  41. say ("Tesouro do Ceifador")
  42. say_item_vnum(50082)
  43. pc.give_item2("50082", 1)
  44. end
  45. end
  46. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement