Forums Index >> Modding >> Just a silly mod idea...
Page : <1> :
How can you lower the mist ??
Very good idea. I would love to see this happen, but don't know if it's possible eather.
I know how!!
somewhere you create a function that uses a for loop that changes the levels of fog. How to time it... Tricky...
A function??? Well if than muck around with this
Function high_mist(%sender,%target_nm)
{
if(!ClientIsAdmin(%sender,"/HighMist command failed you are not admin"))
return;
%match = matchClientName(%target_nm);
%client = firstword(%match);
%status_msg = restWords(%match);
If(%client == -1)
{
Schedule(1000,false,"centerprintall",%nm SPC $pref::Server::BanAnnouncement, 4,3);
}
New MissionArea(MissionArea) {
area = "-256 -256 512 512";
flightCeiling = "200";
flightCeilingRange = "0";
floor = "100";
locked = "false";
};
}
Page : <1> :
Don't know if it's possible, but flood the map occasionally. During the game raise the mist until only the high parts of the map are clear (make sure all the spawn points are on top of hills), then start to lower it again. During a game it should probably start and end at the lowest level, and peak once or twice in between.