Official {MHM} Change Log. Make all change requests here!

Post all {MHM} related content here!
Post Reply
User avatar
Hermskii
Site Admin
Posts: 8706
Joined: Sun Jul 10, 2005 9:56 pm

Re: Official MHM Change LOG. Make all requests here!

Post by Hermskii » Sun Oct 18, 2009 4:11 pm

Gopo was kind enough to update the mod I use. We are now using HOHMHMMODV2 which has fixed the DarkNet in the corner to say Monster Hunt Mayhem. I have increased max health to 500 and starting health to 300. I toned down the monster skill level so they are easier to kill. I removed the welcome screen for now but it will go back up soon once I figure out how to edit the damn thing properly. I have made so many little tweaks that I can't recall them all actually. Check it out and let me know eh! Peace.
~Peace~

Hermskii

User avatar
*POTS*
Posts: 2233
Joined: Fri Oct 17, 2008 8:50 pm

Re: Official MHM Change LOG. Make all requests here!

Post by *POTS* » Sun Oct 18, 2009 7:45 pm

Hermskii wrote:I removed the welcome screen for now but it will go back up soon once I figure out how to edit the damn thing properly.
Search for the following entries in your MapVoteLA.INI file:

Code: Select all

ServerInfoURL=www.hermskii.com/MHM/MHMInfo.htm
bEntryWindows=True
Big thanks to Herm and Gopo for their work as usual. :wink:
Plain Old Telephone Service

User avatar
Hermskii
Site Admin
Posts: 8706
Joined: Sun Jul 10, 2005 9:56 pm

Re: Official MHM Change LOG. Make all requests here!

Post by Hermskii » Tue Oct 20, 2009 6:25 am

Yes, I had already done that which is why the welcome screen is gone. What I meant was how to edit the MHMInfo.htm so it does have all of the code in it. I tried to udate it and when it posted it had all sorts of new stuff in it like html code and stuff. I want it to look cool and be centered and use different colors and stuff but it just showed the code and did not apply my changes.

Hey POTS! Give me a map a day and I'll post them. Give me the complete map though with all files included and I'll start adding. make sure they don't suck and aren't beta maps if possible. Peace.
~Peace~

Hermskii

User avatar
Hook
Posts: 3449
Joined: Fri Feb 16, 2007 9:41 am

Re: Official MHM Change LOG. Make all requests here!

Post by Hook » Tue Oct 20, 2009 11:08 am

OK Hermskii...
Here are the rules for that page...

Welcome Window Setup:
---------------------
First you need to make the Welcome Window HTML source file.

*** The in-game web browser is very very limited.
You can NOT use images, tables tags, java-script, style-sheets, etc.

So, What can you use ?
Here are the comments directly from the "UWindowHTMLTextArea" class
that is used to render the HTML:
-------------------------------------------------------------------
HTML Currently Supported
========================
Parsed on add
-------------
<body bgcolor=#ffffff link=#ffffff alink=#ffffff>...</body>
<font color=#ffffff bgcolor=#ffffff>...</font>
<br>
<center>....</center>
<p>
<h1>...</h1>

Parsed on add and display
-------------------------
<nobr>...</nobr>
<a href="...">...</a>
<b>...</b>
<u>...</u>
<blink>...</blink>

Parsed only on display
----------------------
& gt;
& lt;
& amp;
& nbsp;


Here is the CODE (from Cratos) for the EXAMPLE .htm file...

Code: Select all


<html>
<body bgcolor=#007F7F text=#FFFFFF link=#FF0000 alink=#ffffff>
<center><h1><font color=#7F007F>Welcome to My UT Server</font></h1></center>
<br>
Welcome to my Unreal Tournamnament server.<br>
<br>
<font color=#BAF000><blink><u><b>Server Schedule:<b></u></blink></font><br>
Monday - Friday 7pm to 12 midnight<br>
Saturday - Sunday All day.<br>
<br>
<font color=#BAF000><blink><u><b>Server Rules:<b></u></blink></font><br>
1. No Whinning <br>
2. No camping <br>
3. No farting <br>
4. No swimming <br>           
5. No complaining about too many rules <br>
<a href="http://www.planetunreal.com/BDBUnreal/">Click here to visit my web site</a>
</body>
</html>

Here is the CODE for CMM's Welcome Window...

Code: Select all


<html>
<body bgcolor=#000000 text=#FFFFFF link=#FF0000 alink=#ffffff>
<center><h1><font color=#33ccff>Welcome to Our UT99 Server</font></h1></center>
<center><h1><font color=#ff9900>CROSSBONES MISSILE MADNESS {CMM}</font></h1></center>
<br>
<font color=#BAF000><blink><u><b>Server Game Type:</b></u></blink></font><br>
<b> Unreal Tournamnament REDEEMER ARENA server.</b><br>
<br>
<font color=#BAF000><blink><u><b>Settings and Mods:</b></u></blink></font><br>
<b> Low Gravity - Translocator: But NO TeleFragging - And Other Desirable Mods!</b><br>
<br>
<font color=#BAF000><blink><u><b>Server Schedule:</b></u></blink></font><br>
<b>ALL DAY - Every Day!</b><br>
Evenings, 6:00 pm to 10:00 pm CST May get SOME Lag as Server Comp MAY be in use.<br>
<br>
<font color=#BAF000><blink><u><b>Server Rules:</b></u></blink></font><br>
<b>1. NO Whinning! </b><br>
<b>2. NO Cussing or Swearing! </b><br>
<b>3. NO Farting! - (Well maybe some) </b><br>
<b>4. NO Hate Talk, Flaming or Racial Slurrs! </b><br>           
<b>5. NO Complaining about too many rules! </b><br>
<br>
<font color=#BAF000><blink><u><b>After the Game Visit Our Forums and Site!:<b></u></blink></font><br>
<a href="http://hooksutplace.freeforums.org">CLICK HERE for FORUM</a><br>
<a href="http://hooksutplace.co.nr">CLICK HERE for SITE</a>
</body>
</html>

Just PASTE this Code into a Notepad file (.txt)
Edit it.
Then do a "Save As" -> but type in .htm or .html in place of .txt
Open the .htm or .html file - then right click on it and select "View Source" or "View Source Code" - you can edit directly there!
If you need more info on how to edit - just ask me.
I do this ALL the time! :wink:
(I also have a Great Web Color Guide that I made for selecting web page colors! - I'll post it below)
Just make sure that you ONLY USE tags (like <b>) that are Allowed!
And keep them in order!
Example of order to use:

Code: Select all

<b><u>Here's an Example</u></b>
NOT to use (bad order)...

Code: Select all

<u><b>Here's an Example</u></b>

Un-closed tags... (missing </b> - dont do)

Code: Select all

<b><u>Here's an Example</u>
Last edited by Hook on Tue Oct 20, 2009 11:26 am, edited 3 times in total.
=Hook= of Hook's UT Place - Hopelessly Addicted to UT99!
Forum: https://hooksutplace.freeforums.net
CROSSBONES Missile Madness {CMM} (GT Top 50)
PRO-Redeemer | PRO-SNIPER-Redeemer | SEEKER-Redeemer
Birth Place of ALL Seeker/Scoped Deemers!
IP: NEW IP to come!
CROSSBONES Monster Hunt {CMH} (Special Edition MH by mars007)
IP: 108.61.238.93:7777

User avatar
Hook
Posts: 3449
Joined: Fri Feb 16, 2007 9:41 am

Re: Official MHM Change LOG. Make all requests here!

Post by Hook » Tue Oct 20, 2009 11:20 am

My Web Page COLOR GUIDE... by Hook
Just PASTE this into a Notepad file (.txt)
Then do a "Save As" -> but type in .htm or .html in place of .txt
Open the .htm or html file to see the color guide! :wink:

Code: Select all


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  
  <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
  
  <title>Hook's Popular Webpage COLOR Guide - HTML</title>
  <meta content="Hook" name="author">

  <meta content="Colors to use for a standard webpage" name="description">
</head>

<body style="color: rgb(255, 204, 153); background-color: rgb(44, 44, 44);" alink="#66ff99" link="#33ccff" vlink="#339999">


<h1 style="text-align: center; color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">Popular Webpage COLOR Guide!</span></h1>
<h3 style="text-align: center; color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">by Hook</span></h3>


<span style="font-family: Arial;"></span>
<hr style="height: 4px; width: 70%;">

<center><b>

<hr noshade color="#ff6600" style="height: 9px; width: 50%;">ff6600</td></tr>
<hr noshade color="#99ccff" style="height: 9px; width: 50%;">99ccff</td></tr>
<hr noshade color="#ff9900" style="height: 9px; width: 50%;">ff9900</td></tr>
<hr noshade color="#ffcc99" style="height: 9px; width: 50%;">ffcc99</td></tr>
<hr noshade color="#ffcc00" style="height: 9px; width: 50%;">ffcc00</td></tr>
<hr noshade color="#66ff99" style="height: 9px; width: 50%;">66ff99</td></tr>
<hr noshade color="#33ccff" style="height: 9px; width: 50%;">33ccff</td></tr>
<hr noshade color="#339999" style="height: 9px; width: 50%;">339999</td></tr>
<hr noshade color="#334422" style="height: 9px; width: 50%;">334422</td></tr>
<hr noshade color="#334444" style="height: 9px; width: 50%;">334444</td></tr>
<hr noshade color="#334455" style="height: 9px; width: 50%;">334455</td></tr>
<hr noshade color="#334477" style="height: 9px; width: 50%;">334477</td></tr>
<hr noshade color="#334488" style="height: 9px; width: 50%;">334488</td></tr>
<hr noshade color="#334499" style="height: 9px; width: 50%;">334499</td></tr>
<hr noshade color="#338899" style="height: 9px; width: 50%;">338899</td></tr>
<hr noshade color="#333300" style="height: 9px; width: 50%;">333300</td></tr>
<hr noshade color="#334400" style="height: 9px; width: 50%;">334400</td></tr>
<hr noshade color="#335500" style="height: 9px; width: 50%;">335500</td></tr>
<hr noshade color="#336600" style="height: 9px; width: 50%;">336600</td></tr>
<hr noshade color="#999999" style="height: 9px; width: 50%;">999999</td></tr>
<hr noshade color="#777777" style="height: 9px; width: 50%;">777777</td></tr>
<hr noshade color="#444444" style="height: 9px; width: 50%;">444444</td></tr>
<hr noshade color="#222222" style="height: 9px; width: 50%;">222222</td></tr>
<hr noshade color="black" style="height: 9px; width: 50%;">black</td></tr>
<hr noshade color="white" style="height: 9px; width: 50%;">white</td></tr>
<hr noshade color="gray" style="height: 9px; width: 50%;">gray</td></tr>
<hr noshade color="gold" style="height: 9px; width: 50%;">gold</td></tr>
<hr noshade color="yellow" style="height: 9px; width: 50%;">yellow</td></tr>
<hr noshade color="lightyellow" style="height: 9px; width: 50%;">lightyellow</td></tr>
<hr noshade color="red" style="height: 9px; width: 50%;">red</td></tr>
<hr noshade color="darkred" style="height: 9px; width: 50%;">darkred</td></tr>
<hr noshade color="pink" style="height: 9px; width: 50%;">pink</td></tr>
<hr noshade color="blue" style="height: 9px; width: 50%;">blue</td></tr>
<hr noshade color="lightblue" style="height: 9px; width: 50%;">lightblue</td></tr>
<hr noshade color="darkblue" style="height: 9px; width: 50%;">darkblue</td></tr>
<hr noshade color="green" style="height: 9px; width: 50%;">green</td></tr>
<hr noshade color="lightgreen" style="height: 9px; width: 50%;">lightgreen</td></tr>
<hr noshade color="darkgreen" style="height: 9px; width: 50%;">darkgreen</td></tr>
<hr noshade color="orange" style="height: 9px; width: 50%;">orange</td></tr>
<hr noshade color="darkorange" style="height: 9px; width: 50%;">darkorange</td></tr>
<hr noshade color="violet" style="height: 9px; width: 50%;">violet</td></tr>
<hr noshade color="purple" style="height: 9px; width: 50%;">purple</td></tr>
<hr noshade color="cyan" style="height: 9px; width: 50%;">cyan</td></tr>
<hr noshade color="magenta" style="height: 9px; width: 50%;">magenta</td></tr>

</center></b>
<br>

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;You can use this as a "<span style="font-weight: bold;">Guide</span>"
or a "<span style="font-weight: bold;">Standard</span>"
for your Favorite web pages Colors.<br style="font-family: Arial;">

</span><br style="font-family: Arial;">

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="font-family: Arial;">Enjoy!</span><br style="font-family: Arial;">

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<big><span style="font-family: Arial; font-style: italic; color: rgb(255, 0, 

0);">Hook</span></big><br>

<hr style="height: 4px; width: 70%;">
<div style="text-align: center; font-family: Arial;">
<address>By Hook - <a style="font-weight: bold;" href="mailto:hook8@msn.com" target="_blank">E-Mail Hook</a>
~ Copyright ~ 2008-2009 all rights reserved</address>

</div>

</body>
</html>

<br>

<center>
<a href="http://hooksutplace.freeforums.org/"><img 

src="http://hooksutplace.freeforums.org/sigbars/stlong/ssGrey/somp/ncFF9900/ns1/scFFFFFF/sh1/uc000000/us0.png" border="2" alt="UT99 

Since 8/11/2001 - Great UT Game Server!" /></a>
</center>

=Hook= of Hook's UT Place - Hopelessly Addicted to UT99!
Forum: https://hooksutplace.freeforums.net
CROSSBONES Missile Madness {CMM} (GT Top 50)
PRO-Redeemer | PRO-SNIPER-Redeemer | SEEKER-Redeemer
Birth Place of ALL Seeker/Scoped Deemers!
IP: NEW IP to come!
CROSSBONES Monster Hunt {CMH} (Special Edition MH by mars007)
IP: 108.61.238.93:7777

User avatar
*POTS*
Posts: 2233
Joined: Fri Oct 17, 2008 8:50 pm

Re: Official MHM Change LOG. Make all requests here!

Post by *POTS* » Tue Oct 20, 2009 2:48 pm

Hermskii wrote: Hey POTS! Give me a map a day and I'll post them. Give me the complete map though with all files included and I'll start adding. make sure they don't suck and aren't beta maps if possible. Peace.
OK Herm let's start with this map:
MH-NaliPrison][

It's the final version so it's not beta, I *think* all necessary files should be included in the package and it's not bad IMO. :wink:
Plain Old Telephone Service

User avatar
Hermskii
Site Admin
Posts: 8706
Joined: Sun Jul 10, 2005 9:56 pm

Re: Official MHM Change LOG. Make all requests here!

Post by Hermskii » Tue Oct 20, 2009 7:00 pm

Thank you Hook. Yes, I may still need your help. Thank you POTS! The new map is loaded already. That didn't hurt so bad but I noticed a few things real fast. The room I walked in to had a box or two in it. I shot it and it didn't break into pieces. They just disappeared. Then a few rooms later I was on top of a table and shot down on to it and it shattered but I died when it fell out from under me. Sad. Why? This map is done?
~Peace~

Hermskii

User avatar
*POTS*
Posts: 2233
Joined: Fri Oct 17, 2008 8:50 pm

Re: Official MHM Change LOG. Make all requests here!

Post by *POTS* » Tue Oct 20, 2009 7:19 pm

Tables and boxes are just decorations. Sometimes if you're standing up on a wooden box or a table and you destroy it you can be instantly killed. Don't ask me why it happens because I don't know the technical explanation, I just know it happens quite often also on other maps. Ice and the others can confirm this. Could it be an Unreal Engine glitch? :?
Plain Old Telephone Service

User avatar
Hermskii
Site Admin
Posts: 8706
Joined: Sun Jul 10, 2005 9:56 pm

Re: Official MHM Change LOG. Make all requests here!

Post by Hermskii » Tue Oct 20, 2009 9:30 pm

Interesting. OK, I'm past that. Next new map please. Anything else while you or anyone else is at it?
~Peace~

Hermskii

User avatar
Hook
Posts: 3449
Joined: Fri Feb 16, 2007 9:41 am

Re: Official MHM Change LOG. Make all requests here!

Post by Hook » Wed Oct 21, 2009 8:14 am

Hermskii wrote:Thank you Hook. Yes, I may still need your help.
This may give me a real good reason to give you that call. :wink:
=Hook= of Hook's UT Place - Hopelessly Addicted to UT99!
Forum: https://hooksutplace.freeforums.net
CROSSBONES Missile Madness {CMM} (GT Top 50)
PRO-Redeemer | PRO-SNIPER-Redeemer | SEEKER-Redeemer
Birth Place of ALL Seeker/Scoped Deemers!
IP: NEW IP to come!
CROSSBONES Monster Hunt {CMH} (Special Edition MH by mars007)
IP: 108.61.238.93:7777

User avatar
-SuPreMe-
Posts: 818
Joined: Mon Jul 17, 2006 4:05 am

Re: Official MHM Change LOG. Make all requests here!

Post by -SuPreMe- » Wed Oct 21, 2009 8:27 am

I have a nice map for you to add.

MH-SevenTests{MHM}+
http://rapidshare.com/files/295955462/M ... _.rar.html

Screens
Image
Image

Its in its complete final stage so theres no bugs or anything.
All needed files should be included.

EDIT: Also Herm i noticed the server is running a very old version of NaliPrison instead of the NaliPrison][ pots suggested
-------.[ ]
---- -//|::|\\
----////| .|\\\\ <- 2 times the arms 2 times the awesomeness!
---* * | | |* *
-------||||
-------||||
------..< >
{MHM}
Image

User avatar
Hermskii
Site Admin
Posts: 8706
Joined: Sun Jul 10, 2005 9:56 pm

Re: Official MHM Change LOG. Make all requests here!

Post by Hermskii » Wed Oct 21, 2009 6:30 pm

I used the link he gave me. I also noticed I already had the map. They both have the same name. Damn that pisses me off. Somebody give me the latest version then please or tell me how big the map itself is in mb size exactly.
~Peace~

Hermskii

User avatar
*POTS*
Posts: 2233
Joined: Fri Oct 17, 2008 8:50 pm

Re: Official MHM Change LOG. Make all requests here!

Post by *POTS* » Wed Oct 21, 2009 8:05 pm

Hold on for a minute you two!

The map I posted is named MH-NaliPrison][ and it's exactly 1,922,459 bytes in size (or 1,877 KB or 1.83 MB if you prefer) while the map on the server is named MH-NaliPrison without the "][" suffix so don't look at me. :roll:
Plain Old Telephone Service

User avatar
Hermskii
Site Admin
Posts: 8706
Joined: Sun Jul 10, 2005 9:56 pm

Re: Official MHM Change LOG. Make all requests here!

Post by Hermskii » Wed Oct 21, 2009 11:44 pm

POTS, I was never looking at you. I should have looked at the name better is what I should have done. Easy mistake though I think. So, knowing what we know now, What do I need to install and who is going to send it to me?
~Peace~

Hermskii

User avatar
*POTS*
Posts: 2233
Joined: Fri Oct 17, 2008 8:50 pm

Re: Official MHM Change LOG. Make all requests here!

Post by *POTS* » Thu Oct 22, 2009 3:52 pm

Sorry Herm, I know it can happen. The only problem is I had to re-upload the map since the free Rapidshare upload was expired.

Here is the correct map with all (I hope) required files, even those for redirection:
MH-NaliPrison][

*cross fingers*
Plain Old Telephone Service

Post Reply