tibia-client/modules/game/game.otmod

49 lines
998 B
Plaintext
Raw Normal View History

2011-08-29 05:04:23 +02:00
Module
name: game
description: Create the game interface, where the ingame stuff starts
author: OTClient team
website: https://github.com/edubart/otclient
2011-12-05 19:27:07 +01:00
dependencies:
- game_tibiafiles
- client_background
//- game_shaders
2011-12-05 19:27:07 +01:00
load-later:
- game_textmessage
- game_console
- game_outfit
- game_healthbar
- game_skills
- game_inventory
- game_combatcontrols
- game_containers
- game_viplist
- game_battle
- game_minimap
- game_hotkeys
2012-04-08 22:13:33 +02:00
- game_npctrade
@onLoad: |
importStyle 'styles/items.otui'
importStyle 'styles/creatures.otui'
importStyle 'styles/miniwindow.otui'
importStyle 'styles/countwindow.otui'
dofile 'const'
dofile 'widgets/uigamemap'
dofile 'widgets/uiitem'
dofile 'widgets/uiminiwindow'
dofile 'widgets/uiminiwindowcontainer'
dofile 'creature'
dofile 'player'
dofile 'gameinterface'
GameInterface.init()
@onUnload: |
GameInterface.terminate()