Writing Modules

From ASSS Wiki
Revision as of 10:30, 9 May 2005 by Cyan~Fire (talk | contribs) (changing Category:Tutorial to Category:Guides...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

ASSS modules can be written in either C or Python.

C modules are best suited for large, complex modules that need direct access to the core features of ASSS.

The preferred language for simple modules is Python, because a poorly written module will not crash the entire server (Python is a safe language), while this is not the case for modules written in C.

References