2016-04-18 09:08:37 +00:00
|
|
|
/*=================================================================
|
|
|
|
File created by Yohann NICOLAS.
|
|
|
|
|
|
|
|
Commands directly in game.
|
|
|
|
|
|
|
|
=================================================================*/
|
2017-01-23 19:34:12 +00:00
|
|
|
#pragma once
|
2016-04-18 09:08:37 +00:00
|
|
|
|
2017-01-23 19:34:12 +00:00
|
|
|
#include "common.h"
|
2016-04-18 09:08:37 +00:00
|
|
|
|
|
|
|
extern bool active_Commands;
|
|
|
|
|
|
|
|
void savePlayers(Unit* ptChar);
|
|
|
|
void maxGold(Unit* ptChar);
|
|
|
|
void putGold(Unit* ptChar, DWORD amount);
|
|
|
|
void takeGold(Unit* ptChar, DWORD amount);
|
|
|
|
void updateSharedGold(DWORD goldAmount);
|
|
|
|
|
|
|
|
void Install_Commands();
|
|
|
|
|
2017-01-23 19:34:12 +00:00
|
|
|
/*================================= END OF FILE =================================*/
|