mirror of
https://github.com/OTCv8/otclientv8.git
synced 2025-04-29 10:49:21 +02:00
34 lines
658 B
Plaintext
34 lines
658 B
Plaintext
Module
|
|
name: corelib
|
|
description: Contains core lua classes, functions and constants used by other modules
|
|
author: OTClient team
|
|
website: https://github.com/edubart/otclient
|
|
reloadable: false
|
|
|
|
@onLoad: |
|
|
dofile 'math'
|
|
dofile 'string'
|
|
dofile 'table'
|
|
dofile 'bitwise'
|
|
dofile 'struct'
|
|
|
|
dofile 'const'
|
|
dofile 'util'
|
|
dofile 'globals'
|
|
dofile 'config'
|
|
dofile 'settings'
|
|
dofile 'keyboard'
|
|
dofile 'mouse'
|
|
dofile 'net'
|
|
|
|
dofiles 'classes'
|
|
dofiles 'ui'
|
|
|
|
dofile 'inputmessage'
|
|
dofile 'outputmessage'
|
|
dofile 'orderedtable'
|
|
|
|
dofile 'base64'
|
|
dofile 'json'
|
|
dofile 'http'
|
|
|