Skip to content

Capture & NPC Interaction

Choose a tag to compare

@danorris709 danorris709 released this 18 Feb 15:35

Changes:

Pokemon Specs now need to be surrounded by quotations marks like so: "shiny"
Choices, for the dialogues, also now need to be surrounded by quotation marks
Fixed the choice parser being overly ambitious and parsing things it shouldn't causing breakages with other things like Skript Reflect

Additions:

Added a successful capture event fired when players successfully capture a Pokemon

on successful capture:
   set {_player} to player
   set {_pokemon} to event-pokemon
   set {_entity} to event-pixelmon
   message "WOW! %{_pokemon}% %{_player}% %{_test}%"

Added an NPC Interact event fired when players interact with any Pixelmon NPC

on npc interact:
   set {_entity} to event-npc
   set {_player} to player
   message "WOW! %{_entity}%"

Full Changelog: 1.0.0...1.0.1