Advertisement
Guest User

Untitled

a guest
Aug 13th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. if(objectID == 4955){
  2. if (isBD == true) {
  3. talk("You have already summoned the beast!", 1078);
  4. }
  5. if(System.currentTimeMillis() - lastAction < actionInterval && isBD == false){
  6. talk("You must wait, be patient!", 1078);
  7. }
  8. if(Beast == 0 && isBD == false && System.currentTimeMillis() - lastAction > actionInterval) {
  9. server.npcHandler.spawnANPC(1975, 2743, 5082, heightLevel);
  10. sM("You Wake The Beast Up!");
  11. isBD = true;
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement