• 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.
  • The Hive's 22nd Icon Contest: Creep Abilities is now concluded, time to vote for your favourite set of icons! Click here to vote!
  • ✅ The POLL for Hive's Texturing Contest #34 is OPEN! Vote for the TOP 3 SKINS! 🔗Click here to cast your vote!
  • ✅ The POLL for Hive's Techtree Contest #20 is OPEN! Vote for the TOP 3 FACTIONS! 🔗Click here to cast your vote!

[vJASS] import library

Status
Not open for further replies.
Libraries can use other libraries
Functions that are below another cannot be called by the function above it normally through libraries you can do this though
JASS:
library a

function callB takes nothing returns nothing
call B()//syntax error the function B() is below function callB
endfunction

endlibrary

library b

function B takes nothing returns nothing
endfunction
endlibrary
this is how you would solve it
JASS:
library a uses b //now library a uses library b so the compiler puts all the functions from b above everything from the library a so you can call functions from library b in library a

function callB takes nothing returns nothing
call B()//syntax error the function B() is below function callB
endfunction

endlibrary

library b

function B takes nothing returns nothing
endfunction
endlibrary
scopes are automaticly put below all libraries so every function in a library can be called by scopes.
 
Status
Not open for further replies.
Back
Top