mirror of
				https://gitlab.com/hashborgir/plugy.git
				synced 2025-10-30 08:33:39 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			580 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			580 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*=================================================================
 | |
| 	File created by Yohann NICOLAS.
 | |
| 
 | |
| 	Commands directly in game.
 | |
| 
 | |
| =================================================================*/
 | |
| #pragma once
 | |
| 
 | |
| #include "common.h"
 | |
| 
 | |
| 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();
 | |
| 
 | |
| /*================================= END OF FILE =================================*/ |