SkyTemple / ExplorerScript

ExplorerScript and SSBScript: Script languages for decompiled SSB (Pokémon Mystery Dungeon Explorers of Sky)
MIT License
16 stars 6 forks source link

New syntax for targeted routines #48

Closed theCapypara closed 1 month ago

theCapypara commented 2 months ago

Closes #50

This adds new syntax equivalent to the now deprecated old syntax for targeted routines:

def 0 for_actor(FOOBAR) {}

This is the new equivalent syntax:

def 0 for actor FOOBAR {}
// or: def 0 for actor(FOOBAR) {}
theCapypara commented 2 months ago

Missing: documentation