Increased HP of Practice Dummy

Increased HP of Practice Dummy.  Added instanced player room with persistent storage in Inn.  Full compile.  Updated release archive.
This commit is contained in:
Jaysyn904
2024-09-21 14:31:54 -04:00
parent d481e97d69
commit 8c530509fe
73 changed files with 17784 additions and 252 deletions

View File

@@ -0,0 +1,17 @@
#include "inc_perchest"
void main()
{
object oPlayer = GetExitingObject();
int nToken = NuiFindWindow(oPlayer, PC_NUI_WINDOW_ID);
//:: Murder the poor window
NuiDestroy(oPlayer, nToken);
nToken = NuiFindWindow(oPlayer, PC_NUI_GOLD_WINDOW_ID);
if (nToken)
NuiDestroy(oPlayer, nToken);
}