• 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.

[vJASS] import library

Status
Not open for further replies.
Level 4
Joined
Mar 27, 2008
Messages
112
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.
Top