Wiki : Mapping Questions
-
- DW Clan Member
- Posts: 1634
- Joined: Wed Dec 28, 2005 12:00 am
Pretty sure Monster Evolution uses specifically customized monsters. For example, the Doom monsters directly from Iniquitous' website are really quite weak and pose no threat to RPG-enhanced players while being trivial to kill. So Ant had to specifically customize them all for the server. Same with the Dragons. You'll need whatever file is responsible for that.
The Sample package is the OSM monster pack. The skaarj is the substitute for the Invul Hunter. Which means you're spawning one correctly.
In order to run the Smart Monster Pack (full version), you'll be required to have every single monster package. It's a all/nothing kind of deal due to dependencies. The link I gave you contains the resource files for the monster packs. That's useful if you need to compare monster sizes, call monster sounds, create custom textures, etc...
Since an enumerator is represented by a byte, we would have been limited to 255 monsters. Not to mention that placing them in an enumerator will reduce the flexibility. Monsters could be added/removed from the server.
In order to run the Smart Monster Pack (full version), you'll be required to have every single monster package. It's a all/nothing kind of deal due to dependencies. The link I gave you contains the resource files for the monster packs. That's useful if you need to compare monster sizes, call monster sounds, create custom textures, etc...
A drop down menu is interpreted as an enumerator in UScript. An enumerator is represented by a number. Nali Cow would equal 0, Pupae would equal 1, Fly would be 2, etc...vinc3h wrote:(why not a drop down for monster names, and a drop down for the order(if it has preset variables that must be used)).
Since an enumerator is represented by a byte, we would have been limited to 255 monsters. Not to mention that placing them in an enumerator will reduce the flexibility. Monsters could be added/removed from the server.
If your interval is set to 0, then the monster spawner is going to attempt to spawn a monster continuously until the number of living monsters reached to the Max Items value. It will not spawn a monster if the spawn point is already occupied. Try placing more spawn points. When you trigger the monster spawner, it'll attempt to spawn a monster immediately.vinc3h wrote:Also, another question, it seems to spawn at random intervals everytime i test. Sometimes immediately, sometimes 10 seconds, othertimes more or less.
The difference between successful people from others is
not in the lack of strength,
not in the lack of knowledge,
but rather in the lack of will.
FFE466
_________________________
{F}{AH}{CivFR}{XC}{U}{DF}{CJ}{SD}
not in the lack of strength,
not in the lack of knowledge,
but rather in the lack of will.
FFE466
_________________________
{F}{AH}{CivFR}{XC}{U}{DF}{CJ}{SD}
-
- Camper
- Posts: 68
- Joined: Fri May 18, 2012 9:13 am
- Location: USA (New Jersey)
- Contact:
:scool:
By the way, OSM stands for Old Skool Monsta. An Unreal Tournament 2004 mod by SuperApe - http://www.moddb.com/mods/old-skool-monsta-toolz.
As for the *.ini files, you're going to have to ask DW_Ant. He is the admin.
By the way, OSM stands for Old Skool Monsta. An Unreal Tournament 2004 mod by SuperApe - http://www.moddb.com/mods/old-skool-monsta-toolz.
As for the *.ini files, you're going to have to ask DW_Ant. He is the admin.
Last edited by poompoom500 on Thu Sep 27, 2012 1:12 am, edited 1 time in total.
IMPORTANT: Please read this message - http://www.angelfire.com/zine3printpubi ... 234567.htm
Thats my confusion, i downloaded all the monsters ive seen on the server from that website, and took directly from the cache on top of that, and have all monsters you listed in a different thread, seems like i have most of them, just need to figure out which i don't have, or do i need to load the smartmonsterpack or something like that in order to get it to use it?DW_Ant wrote:The Sample package is the OSM monster pack. The skaarj is the substitute for the Invul Hunter. Which means you're spawning one correctly.
In order to run the Smart Monster Pack (full version), you'll be required to have every single monster package. It's a all/nothing kind of deal due to dependencies. The link I gave you contains the resource files for the monster packs. That's useful if you need to compare monster sizes, call monster sounds, create custom textures, etc...
3D Modeler, Texture Artist, Level Designer
-
- Camper
- Posts: 68
- Joined: Fri May 18, 2012 9:13 am
- Location: USA (New Jersey)
- Contact:
:swondering:
I think you need to ask DW_Ant for those files (SmartMonsterPack). I see about three files in my Unreal Tournament 2004\System folder, SmartMonsterPack.u, SmartMonsterPackResources.u, and SmartMonsterPackSample.u. There is no way you can edit them because you don't have the right files. And if you do want to try, then here's the code for decompiling and compiling the *.u files:
Run CMD on Start, then type the above code.
To compile the *.u file, just type:
I think you need to ask DW_Ant for those files (SmartMonsterPack). I see about three files in my Unreal Tournament 2004\System folder, SmartMonsterPack.u, SmartMonsterPackResources.u, and SmartMonsterPackSample.u. There is no way you can edit them because you don't have the right files. And if you do want to try, then here's the code for decompiling and compiling the *.u files:
Code: Select all
cd c:\program files\unreal tournament 2004\system
ucc batchexport SmartMonsterPack class uc ..\SmartMonsterPack\Classes
To compile the *.u file, just type:
Code: Select all
ucc make SmartMonsterPack
IMPORTANT: Please read this message - http://www.angelfire.com/zine3printpubi ... 234567.htm