Advertisement
Guest User

Untitled

a guest
May 11th, 2014
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. moroccx,152,134,0 script School of Fish 844,{
  2. if (isequipped(2764)) && (isequipped(2775)){
  3. specialeffect2 EF_BUBBLE;
  4. set .@fcast,7;
  5. if (isequipped(2550)) { //Fisher's_Muffler
  6. set .@fcast,.@fcast - 3;
  7. }
  8. if (isequipped(2443)) { //Fish_Shoes
  9. set .@fcast,.@fcast - 2;
  10. }
  11. progressbar "ffffff",.@fcast;
  12. if (rand(1,20) == 2) {
  13. getitem 13550,10; //Big Fish
  14. specialeffect EF_BUBBLE;
  15. mapannounce "allstar","" + strcharinfo(0) + " has caught a Fish Slice Box!!!",bc_map,"0xff77ff";
  16. end;
  17. }
  18. set .@rhea_ran,rand(1,70);
  19. if (.@rhea_ran < 20) {
  20. getitem 7420,5; //Fresh Fish
  21. }
  22. else if (.@rhea_ran == 20) {
  23. getitem 13604,1; //Spawn
  24. }
  25. else if (.@rhea_ran == 21) {
  26. getitem 13592,1; //Jellopy
  27. }
  28. else if (.@rhea_ran == 22) {
  29. getitem 13578,1; //Sharp_Scale
  30. }
  31. else if (.@rhea_ran == 23) {
  32. getitem 13596,1; //Gill
  33. }
  34. else if (.@rhea_ran == 24) {
  35. getitem 13572,1; //Marlin
  36. }
  37. else if (.@rhea_ran == 25) {
  38. getitem 13574,1; //Sticky_Webfoot
  39. }
  40. else if (.@rhea_ran == 26) {
  41. getitem 13891,1; //Nipper
  42. }
  43. else if (.@rhea_ran == 27) {
  44. getitem 13892,1; //Garlet
  45. }
  46. else if (.@rhea_ran == 28) {
  47. getitem 13893,1; //Sticky_Mucus
  48. }
  49. else if ((.@rhea_ran > 28) && (.@rhea_ran < 40)) {
  50. getitem 13894,1; //Rotten Fish
  51. }
  52. else {
  53. mes "Nothing was caught.";
  54. close;
  55. }
  56. if (rand(1,200) == 3) {
  57. getitem 13550,10; //Gift_Box
  58. mapannounce "allstar","" + strcharinfo(0) + " has caught a Fish Slice Box!!",bc_map,"0x00ffff";
  59. }
  60. if (rand(1,500) == 3) {
  61. getitem 12106,1; //Old_Blue_Box
  62. mapannounce "allstar","" + strcharinfo(0) + " has caught an Jewelry Box!!",bc_map,"0x00ffff";
  63. }
  64. if (rand(1,3000) == 3) {
  65. getitem 12106,1; //Old_Violet_Box
  66. mapannounce "allstar","" + strcharinfo(0) + " has caught an Jewelry Box!!",bc_map,"0x44ff44";
  67. }
  68. end;
  69. }
  70. else {
  71. mes "Fish are swimming in the water.";
  72. close;
  73. }
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement