Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. // NPC made by Kondie
  2. timereverywhere;
  3. canbecarried;
  4. if (created){
  5. if(save[0]!=1){
  6. save[1]=x;
  7. save[2]=y;
  8. save[0]=1;
  9. }
  10. this.bushdamage=1;
  11. this.bushdrop=random(1,100);
  12. }
  13. if (washit || exploded || wasthrown){
  14. this.bushdamage=-1;
  15. play crush.wav;
  16. sleep .05;
  17. if (this.bushdamage<=0){
  18. if (this.bushdrop>=10 && this.bushdrop<30 ){
  19. putnpc gralat_sign5.gif,farming_gralats5.txt,x,y;
  20. }
  21. if (this.bushdrop>=30 && this.bushdrop<100 ){
  22. putnpc gralat_sign1.gif,farming_gralats1.txt,x,y;
  23. }
  24. if (this.bushdrop>=0 && this.bushdrop<10 ){
  25. }
  26. hide;
  27. this.bushdamage=1;
  28. this.bushdrop=random(1,100);
  29. message ;
  30. sleep 10;
  31. x=save[1];
  32. y=save[2];
  33. setimg kondies_gralatbush.gif;
  34. show;
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement