Tier 2 milestone reached!
This commit is contained in:
@@ -59,7 +59,7 @@ Current milestones are separated by "Tiers", which are as follows:
|
|||||||
|
|
||||||
- Add *-at least minimal-* death messages. *-Example: "\<player\> was killed by a \<monster\>".-* **[DONE]**
|
- Add *-at least minimal-* death messages. *-Example: "\<player\> was killed by a \<monster\>".-* **[DONE]**
|
||||||
- Implement HUD info about the monsters, along with the "displayname" keyvalue. **[DONE]**
|
- Implement HUD info about the monsters, along with the "displayname" keyvalue. **[DONE]**
|
||||||
- Implement custom monster classification, the "classify" keyvalue.
|
- Implement custom monster classification, the "classify" keyvalue. **[DONE]**
|
||||||
|
|
||||||
### Tier 3
|
### Tier 3
|
||||||
|
|
||||||
|
|||||||
@@ -5,10 +5,31 @@
|
|||||||
// To add entries to this file, just pretend it's ripent.
|
// To add entries to this file, just pretend it's ripent.
|
||||||
//
|
//
|
||||||
// "delay" means monster respawndelay.
|
// "delay" means monster respawndelay.
|
||||||
|
//
|
||||||
|
// You may also be interesed in these other 2 keyvalues:
|
||||||
|
//
|
||||||
|
// "displayname" to change the monster's name, shown in HUD when you point at it.
|
||||||
|
// "classify" to change the monster's default classification, use one of these values:
|
||||||
|
//
|
||||||
|
// CLASS_NONE 0
|
||||||
|
// CLASS_MACHINE 1
|
||||||
|
// CLASS_PLAYER 2
|
||||||
|
// CLASS_HUMAN_PASSIVE 3
|
||||||
|
// CLASS_HUMAN_MILITARY 4
|
||||||
|
// CLASS_ALIEN_MILITARY 5
|
||||||
|
// CLASS_ALIEN_PASSIVE 6
|
||||||
|
// CLASS_ALIEN_MONSTER 7
|
||||||
|
// CLASS_ALIEN_PREY 8
|
||||||
|
// CLASS_ALIEN_PREDATOR 9
|
||||||
|
// CLASS_INSECT 10
|
||||||
|
// CLASS_PLAYER_ALLY 11
|
||||||
|
// CLASS_PLAYER_BIOWEAPON 12
|
||||||
|
// CLASS_ALIEN_BIOWEAPON 13
|
||||||
|
|
||||||
{
|
{
|
||||||
"origin" "90 -180 150"
|
"origin" "90 -180 150"
|
||||||
"delay" "30"
|
"delay" "30"
|
||||||
|
"displayname" "Example Custom Name"
|
||||||
"orientation" "1"
|
"orientation" "1"
|
||||||
"spawnflags" "32"
|
"spawnflags" "32"
|
||||||
"classname" "monster_miniturret"
|
"classname" "monster_miniturret"
|
||||||
@@ -16,6 +37,7 @@
|
|||||||
{
|
{
|
||||||
"origin" "123 456 789"
|
"origin" "123 456 789"
|
||||||
"delay" "5"
|
"delay" "5"
|
||||||
|
"classify" "7"
|
||||||
"angles" "0 45 0"
|
"angles" "0 45 0"
|
||||||
"classname" "monster_houndeye"
|
"classname" "monster_houndeye"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -56,8 +56,8 @@ static META_FUNCTIONS gMetaFunctionTable =
|
|||||||
plugin_info_t Plugin_info = {
|
plugin_info_t Plugin_info = {
|
||||||
META_INTERFACE_VERSION, // interface version
|
META_INTERFACE_VERSION, // interface version
|
||||||
"MonsterMod", // name
|
"MonsterMod", // name
|
||||||
"2-prerelease", // version
|
"2.0", // version
|
||||||
"01/06/2020", // date in DD/MM/YYYY format
|
"03/06/2020", // date in DD/MM/YYYY format
|
||||||
"botman, Rick90, Giegue", // original authors + recreation by...
|
"botman, Rick90, Giegue", // original authors + recreation by...
|
||||||
"https://github.com/JulianR0/monstermod-redo", // url
|
"https://github.com/JulianR0/monstermod-redo", // url
|
||||||
"MONSTER", // logtag
|
"MONSTER", // logtag
|
||||||
|
|||||||
Reference in New Issue
Block a user