mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Simple coinflip command. Throws a hissyfit if you dont guess. Only accepts lowercase Possibly adds newlines on error message. Compiles with no errors or warns- May tidy it later this is just a test
21 lines
496 B
Plaintext
21 lines
496 B
Plaintext
#include "core\_definitions.dm"
|
|
#include "core\core.dm"
|
|
#include "core\datum.dm"
|
|
#include "core\tgs_version.dm"
|
|
|
|
#ifdef TGS_V3_API
|
|
#include "v3210\api.dm"
|
|
#include "v3210\commands.dm"
|
|
#endif
|
|
|
|
#include "v4\api.dm"
|
|
#include "v4\commands.dm"
|
|
|
|
#include "v5\_defines.dm"
|
|
#include "v5\api.dm"
|
|
#include "v5\api_vgs.dm" // VOREStation Edit - Include here so it has access to v5 defines
|
|
#include "v5\commands.dm"
|
|
#include "v5\chat_commands.dm"
|
|
#include "v5\chat_commands_zz_ch.dm"
|
|
#include "v5\undefs.dm"
|