16 lines
460 B
Plaintext
16 lines
460 B
Plaintext
#include "gzinc_daoctools"
|
|
|
|
int StartingConditional()
|
|
{
|
|
|
|
SetCustomToken(114,IntToString(GetIsBindstonesEnabled()));
|
|
SetCustomToken(115,IntToString(GetIsGravesEnabled()));
|
|
//IntToString(GetGraveXPRegain())+" %"); no idea why this does not work...
|
|
SetCustomToken(117,IntToString(GetIsRecallEnabled()));
|
|
SetCustomToken(118,IntToString(GetLocalInt(GetModule(), "T1_MODULE_CFG_GRAVEEXPREGAIN")));
|
|
|
|
|
|
int iResult = TRUE;
|
|
return iResult;
|
|
}
|