ID:179289
 
Is there any way to easily use libararies? It's gonna be a pain moving the files and icons over :p
The easiest way is to simply open your .dme file, expand the folders until you see the desired files and check the boxes next to them. If there are portions of certain procs that you want to override or change, just do it like you would any other proc, var, etc.

For example, say Megalib had a cool function that did something to a mob. But I also wanted it to change the mob's icon. I would just do the following:

mob/proc/Whatever() // Just like the proc declaration in the lib file
..() // call base functionality
src.icon = 'new_icon.dmi' // do my additions

Make sense?

-<font face="exocet">James</font>