Advertisement
Guest User

Untitled

a guest
Aug 5th, 2015
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. prontera,142,169,5 script Lira 811,{
  2. function checkw;
  3. .npc$ = "^0099CCLira - Godlike Creator^000000";
  4.  
  5. mes .npc$;
  6. mes "As l can see you, found your way to me ^0000ff"+strcharinfo(0)+"^000000.";
  7. mes "although they require many rare ^FF0000jewels^000000 to make.";
  8. mes " ";
  9. mes "What can l mix for you?";
  10. next;
  11. switch(select(" - mix ^AA6A04Mjolnir^000000: - mix ^AA6A04Sleipnir^000000: - mix ^AA6A04Brisingamen^000000: - mix ^AA6A04Gleipnir^000000: - mix ^AA6A04Megingjard^000000")) {
  12. case 1:
  13. mes .npc$;
  14. mes "^3355FFMjolnir^000000 is the mighty Hammer of Thor.";
  15. mes " ";
  16. setarray .@Items[0],20030,1531,2,984,20,985,5,969,40,7074,2,7075,4,7078,5,7087,5,7089,5;
  17. break;
  18. case 2:
  19. mes .npc$;
  20. mes "^3355FFSleipnir^000000 are boots made after Odin's War Horse.";
  21. mes " ";
  22. setarray .@Items[0],20029,2406,2,984,1,969,20,985,10,7076,3,7079,5,7083,3,7086,3;
  23. break;
  24. case 3:
  25. mes .npc$;
  26. mes "^3355FFBrisingammen^000000 is the magical Necklace of Freyja, goddess of Beauty.";
  27. mes " ";
  28. setarray .@Items[0],2630,2603,1,726,2,722,3,727,10,723,5,969,20,7073,4,7077,4,7088,3,7090,3,7092,3;
  29. break;
  30. case 4:
  31. mes .npc$;
  32. mes "The ^3355FFGleipnir^000000 is a light yet strong rope required to make ^3355FFMegingjard^000000";
  33. mes " ";
  34. setarray .@Items[0],7058,7080,4,7081,5,7082,4,7084,3,7085,3;
  35. break;
  36. case 5:
  37. mes .npc$;
  38. mes "The ^3355FFMegingjard^000000 is the powerful Belt of Thor.";
  39. setarray .@Items[0],20021,7058,1,2601,1,969,10,726,10,984,5;
  40. break;
  41. }
  42.  
  43. mes "^FF0000The ltems i need are as follows:^000000";
  44. for(set .@i,1; .@i<getarraysize(.@Items[0]); set .@i,.@i+2) {
  45. mes "^0000FF"+.@Items[.@i+1]+"^000000 x ^AA6A04"+getitemname(.@Items[.@i])+"^000000";
  46. if (countitem(.@Items[.@i]) < .@Items[.@i+1]) set .@nr,1; }
  47. if (.@nr) close;
  48. next;
  49. mes .npc$;
  50. mes "Do you want ^3355FF"+getitemname(.@Items[0])+"^000000?";
  51. next;
  52. if(select(" - Yes, Please: - No, Thanks")== 2) {
  53. mes .npc$;
  54. mes "Very well then, please go back, if you change your mind.";
  55. close;
  56. }
  57. mes .npc$;
  58. mes "Here is your ^3355FF"+getitemname(.@Items[0])+"^000000.";
  59. mes "lt may serve you well.";
  60. for(set .@i,1; .@i<getarraysize(.@Items); set .@i,.@i+2)
  61. delitem .@Items[.@i], .@Items[.@i+1];
  62. getitem .@Items[0],1;
  63. checkw .@Items[0],1;
  64. close;
  65. }
  66.  
  67.  
  68. function checkw {
  69. if(!checkweight(getarg(0),1))
  70. {
  71. mes .npc$;
  72. mes "Your weight is too high!","Dein Gewicht ist zu hoch!";
  73. close;
  74. }
  75. return;
  76. }
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement