Advertisement
Guest User

Untitled

a guest
Mar 17th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. ////////////////////////////////////////////////////////////////
  2. //------------------------------------------------------------//
  3. // ____ __. __ //
  4. //| |/ _|___.__.__ __| | __ ____ //
  5. //| < < | | | \ |/ // __ \ //
  6. //| | \ \___ | | / <\ ___/ //
  7. //|____|__ \/ ____|____/|__|_ \\___ > //
  8. // \/\/ \/ \/ //
  9. // //
  10. // Por favor não retire os créditos. //
  11. //------------------------------------------------------------//
  12. //Versão:1.0 //
  13. //------------------------------------------------------------//
  14. //Data de criação: 18/12/2013 //
  15. //------------------------------------------------------------//
  16. //Atualizações: //
  17. // 1 - Criação do NPC. //
  18. //------------------------------------------------------------//
  19. ////////////////////////////////////////////////////////////////
  20. new_1-1,57,114,4 script Pack Iniciante 92,{
  21.  
  22. //Configurações
  23. set .nome$,"[^FF0000 Pack Iniciante ^000000]"; //Nome do NPC
  24.  
  25. if(#recebeu != 0)
  26. {
  27. mes .nome$;
  28. mes "Olá "+strcharinfo(0)+" você já pegou seu ^FF0000 Pack Iniciante ^000000";
  29. close;
  30. }
  31. else
  32. {
  33. mes .nome$;
  34. mes "Olá "+strcharinfo(0)+"!";
  35. mes "Estou aqui para entregar o ^FF0000 Pack Iniciante ^000000 para os novos jogadores.";
  36. mes "Deseja pegar o seu?";
  37. next;
  38. if(select("Sim:Não") ==2 ) { close;}
  39. mes "Aqui está seu ^FF0000 Pack Iniciante ^000000 faça bom proveito!";
  40. getitem 607,1; //getitem IDDOITEM,QUANTIDADE;
  41. getitem 610,1; //getitem IDDOITEM,QUANTIDADE;
  42. getitem 609,1; //getitem IDDOITEM,QUANTIDADE;
  43. set #recebeu,1;
  44. close;OnInit:waitingroom "Pack Iniciante",0;end;
  45. }
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement