Add gamerules offsets for supported mods

This commit is contained in:
Arkshine
2015-10-09 10:53:53 +02:00
parent 7db6e9355d
commit f31e0e405f
16 changed files with 2420 additions and 0 deletions

View File

@ -0,0 +1,60 @@
/**
* Do not edit this file. Any changes will be overwritten by the gamedata
* updater or by upgrading your AMX Mod X install.
*
* To override data in this file, create a subdirectory named "custom" and
* place your own gamedata file(s) inside of it. Such files will be parsed
* after AMXX's own.
*
* For more information, see http://wiki.alliedmods.net/Gamedata_Updating_(AMX_Mod_X)
*/
"Games"
{
"#default"
{
"Classes"
{
"CHalfLifeMultiplay"
{
"Offsets"
{
"m_flIntermissionEndTime" // float
{
"type" "float"
"windows" "4"
"linux" "4"
"mac" "4"
}
"m_flIntermissionStartTime" // float
{
"type" "float"
"windows" "8"
"linux" "8"
"mac" "8"
}
"m_iEndIntermissionButtonHit" // BOOL
{
"type" "integer"
"windows" "12"
"linux" "12"
"mac" "12"
}
}
}
}
}
}
/**
* Class Hierarchy
* -
* CGameRules
* CHalfLifeMultiplay
*/

View File

@ -0,0 +1,52 @@
/**
* Do not edit this file. Any changes will be overwritten by the gamedata
* updater or by upgrading your AMX Mod X install.
*
* To override data in this file, create a subdirectory named "custom" and
* place your own gamedata file(s) inside of it. Such files will be parsed
* after AMXX's own.
*
* For more information, see http://wiki.alliedmods.net/Gamedata_Updating_(AMX_Mod_X)
*/
"Games"
{
"#default"
{
"Classes"
{
"CHalfLifeTeamplay"
{
"Offsets"
{
"m_DisableDeathMessages" // BOOL
{
"type" "integer"
"windows" "16"
"linux" "16"
"mac" "16"
}
"m_DisableDeathPenalty" // BOOL
{
"type" "integer"
"windows" "20"
"linux" "20"
"mac" "20"
}
}
}
}
}
}
/**
* Class Hierarchy
* -
* CGameRules
* CHalfLifeMultiplay
* CHalfLifeTeamplay
*/

View File

@ -0,0 +1,44 @@
/**
* Do not edit this file. Any changes will be overwritten by the gamedata
* updater or by upgrading your AMX Mod X install.
*
* To override data in this file, create a subdirectory named "custom" and
* place your own gamedata file(s) inside of it. Such files will be parsed
* after AMXX's own.
*
* For more information, see http://wiki.alliedmods.net/Gamedata_Updating_(AMX_Mod_X)
*/
"Games"
{
"#default"
{
"Classes"
{
"CTeamFortress"
{
"Offsets"
{
"m_VoiceGameMgr" // class CVoiceGameMgr
{
"type" "class"
"windows" "28"
"linux" "24"
"mac" "24"
}
}
}
}
}
}
/**
* Class Hierarchy
* -
* CGameRules
* CHalfLifeMultiplay
* CHalfLifeTeamplay
* CTeamFortress
*/