Advertisement
Guest User

Untitled

a guest
Sep 25th, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. -- A basic monster script skeleton you can copy and modify for your own creations.
  2. comments = {"He hums a song about a game.", "Top of the mornin' \n to ya monsters.", "He shouts loudly. \n It motivates you.", "LOUD SHOUTING!!", "He's a zombie in a game show.", "He does a collab \r with other 'tubers.", "To be continued memes.", "He plays Who's Your Daddy \n with Markiplier."}
  3. commands = {"Subscribe", "Dislike", "Like"}
  4. randomdialogue = {"I'm just a \n whale biologist.", "ALL THE WAY!", "SUPER! TRUCK!", "*High five*", "Keep on a dancin!", "I call bull shit /r on that.", "BILLY AND BOBBY!", "Welcome to the JSE \n Power Hour!"}
  5.  
  6. sprite = "jacksepticeye" --Always PNG. Extension is added automatically.
  7. name = "Jacksepticeye"
  8. hp = 100
  9. atk = 8
  10. def = 8
  11. check = "A popular youtuber."
  12. dialogbubble = "rightlarge" -- See documentation for what bubbles you have available.
  13. canspare = false
  14. cancheck = true
  15.  
  16. -- Happens after the slash animation but before
  17. function HandleAttack(attackstatus)
  18. if attackstatus == -1 then
  19. -- player pressed fight but didn't press Z afterwards
  20. else
  21. -- player did actually attack
  22. end
  23. end
  24.  
  25. -- This handles the commands; all-caps versions of the commands list you have above.
  26. function HandleCustomCommand(command)
  27. if command == "Subscribe" then
  28. currentdialogue = {"Thank you!"}
  29. elseif command == "Dislike" then
  30. currentdialogue = {"FUCKA YOUU!!"}
  31. elseif command == "Like" then
  32. currentdialogue = {"You're amazing."}
  33. end
  34. BattleDialog{"You " .. command .. "."}
  35. end
  36.  
  37. {"[noskip]TOP OF THE MORNING TO YA LADDIES!.", "[noskip]MY NAME IS JACKSEPTICEYE,[w:20]\nAND WELCOME BACK TO...", "[noskip]WELCOME BACK TO,[w:20]\nUNDERTALE? WAIT NO \r THIS IS", "[noskip][effect:none][novoice][waitall:5]UNITAAAALE![w:10][next]"})
  38. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement