• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

JASS BJ Functions

Status
Not open for further replies.
These functions aren't highlighted in red (the BJ-forms of the hashtable functions):
JASS:
	LoadRealBJ : "real",
    LoadIntegerBJ : "integer",
    LoadBooleanBJ : "boolean",
    LoadStringBJ : "string",
    LoadPlayerHandleBJ : "player",
    LoadWidgetHandleBJ : "widget",
    LoadDestructableHandleBJ : "destructable",
    LoadItemHandleBJ : "item",
    LoadUnitHandleBJ : "unit",
    LoadAbilityHandleBJ : "ability",
    LoadTimerHandleBJ : "timer",
    LoadTriggerHandleBJ : "trigger",
    LoadTriggerConditionHandleBJ : "triggercondition",
    LoadTriggerActionHandleBJ : "triggeraction",
    LoadTriggerEventHandleBJ : "event",
    LoadForceHandleBJ : "force",
    LoadGroupHandleBJ : "group",
    LoadLocationHandleBJ : "location",
    LoadRectHandleBJ : "rect",
    LoadBooleanExprHandleBJ : "boolexpr",
    LoadSoundHandleBJ : "sound",
    LoadEffectHandleBJ : "effect",
    LoadUnitPoolHandleBJ : "unitpool",
    LoadItemPoolHandleBJ : "itempool",
    LoadQuestHandleBJ : "quest",
    LoadQuestItemHandleBJ : "questitem",
    LoadDefeatConditionHandleBJ : "defeatcondition",
    LoadTimerDialogHandleBJ : "timerdialog",
    LoadLeaderboardHandleBJ : "leaderboard",
    LoadMultiboardHandleBJ : "multiboard",
    LoadMultiboardItemHandleBJ : "multiboarditem",
    LoadTrackableHandleBJ : "trackable",
    LoadDialogHandleBJ : "dialog",
    LoadButtonHandleBJ : "button",
    LoadTextTagHandleBJ : "texttag",
    LoadLightningHandleBJ : "lightning",
    LoadImageHandleBJ : "image",
    LoadUbersplatHandleBJ : "ubersplat",
    LoadRegionHandleBJ : "region",
    LoadFogStateHandleBJ : "fogstate",
    LoadFogModifierHandleBJ : "fogmodifier",
    LoadHashtableHandleBJ : "hashtable",
    HaveSavedValue : "boolean",

Sorry about the odd format, I just ripped this code out of some old dictionary object I had because it was too tedious to write the names out manually from the blizzard.j.
 

Ralle

Owner
Level 79
Joined
Oct 6, 2004
Messages
10,183
Let's see..
These functions aren't highlighted in red (the BJ-forms of the hashtable functions):
JASS:
    LoadRealBJ : "real",
    LoadIntegerBJ : "integer",
    LoadBooleanBJ : "boolean",
    LoadStringBJ : "string",
    LoadPlayerHandleBJ : "player",
    LoadWidgetHandleBJ : "widget",
    LoadDestructableHandleBJ : "destructable",
    LoadItemHandleBJ : "item",
    LoadUnitHandleBJ : "unit",
    LoadAbilityHandleBJ : "ability",
    LoadTimerHandleBJ : "timer",
    LoadTriggerHandleBJ : "trigger",
    LoadTriggerConditionHandleBJ : "triggercondition",
    LoadTriggerActionHandleBJ : "triggeraction",
    LoadTriggerEventHandleBJ : "event",
    LoadForceHandleBJ : "force",
    LoadGroupHandleBJ : "group",
    LoadLocationHandleBJ : "location",
    LoadRectHandleBJ : "rect",
    LoadBooleanExprHandleBJ : "boolexpr",
    LoadSoundHandleBJ : "sound",
    LoadEffectHandleBJ : "effect",
    LoadUnitPoolHandleBJ : "unitpool",
    LoadItemPoolHandleBJ : "itempool",
    LoadQuestHandleBJ : "quest",
    LoadQuestItemHandleBJ : "questitem",
    LoadDefeatConditionHandleBJ : "defeatcondition",
    LoadTimerDialogHandleBJ : "timerdialog",
    LoadLeaderboardHandleBJ : "leaderboard",
    LoadMultiboardHandleBJ : "multiboard",
    LoadMultiboardItemHandleBJ : "multiboarditem",
    LoadTrackableHandleBJ : "trackable",
    LoadDialogHandleBJ : "dialog",
    LoadButtonHandleBJ : "button",
    LoadTextTagHandleBJ : "texttag",
    LoadLightningHandleBJ : "lightning",
    LoadImageHandleBJ : "image",
    LoadUbersplatHandleBJ : "ubersplat",
    LoadRegionHandleBJ : "region",
    LoadFogStateHandleBJ : "fogstate",
    LoadFogModifierHandleBJ : "fogmodifier",
    LoadHashtableHandleBJ : "hashtable",
    HaveSavedValue : "boolean",
Sorry about the odd format, I just ripped this code out of some old dictionary object I had because it was too tedious to write the names out manually from the blizzard.j.
Yup. There we go.
 
Status
Not open for further replies.

Similar threads

Top