Forums Index >> Modding >> help...



Page : <1> :


I have a few questions...

1. How do I get rid of the fog in my mod, and how do I raise the land were the fog is, so its not a big drop.

2. How do I make my tanks go faster.

3. Last thing, how do I get my tanks to have rapid fire, like, the bullets going really fast, I also need to get its so that it doesnt run out of ammo.

PLEASE HELP ME, I havent made a mod in ages.

 

Last edited: Sunday, July 24, 2005 at 2:34:24 PM

Sunday, July 24, 2005 at 2:23:54 PM

Go to the post named ::::THE NEW MODDING RESOURCE::::
All the answers you want are there, noone else will answer questions when its in the resource :)


Sunday, July 24, 2005 at 2:49:17 PM

To make the fog not hurt u (at all) go to the top of your.mis file ((((the.mis files are in the "game/data/missions" folder )))) and you will see this:::

//--- OBJECT WRITE BEGIN ---
new SimGroup(MissionGroup) {
musicTrack = "Spooky";

New ScriptObject(MissionInfo) {
name = "Pituitary Plateau";
};
new MissionArea(MissionArea) {
area = "-512 -512 1024 1024";
flightCeiling = "200";
flightCeilingRange = "0";
floor = "95";
locked = "false";

Change the " area = "-512 -512 1024 1024"; " line to " area = "-2048 -2048 4096 4096"; "

HAVE FUN!!!!

------------------------------------------------------------

To make the tanks go faster add these (copy and paste it) into the bottom of the.mis file (right after or under the "//--- OBJECT WRITE END ---") that u want them to go into.......The.mis files are in the "game/data/missions" folder...
-------------------------------------------------------------

//LightTank//
LightTank.accelrate = 40.0;
LightTank.maxspeed = 50.9;

//MediumTank//
MediumTank.accelrate = 38;
MediumTank.maxspeed = 45;

//HeavyTank//
HeavyTank.accelrate = 25.0;
HeavyTank.maxspeed = 40.0;

//BabyBoss//
BabyBoss.accelrate = 40.0;
BabyBoss.maxspeed = 50.0;

//BossTank//
BossTank.accelrate = 25.0;
BossTank.maxspeed = 40.0;

------------------------------------------------------------

To make the tanks shoot reeeealyy fast and have unlimited ammo::::::::::add these (copy and paste it) into the bottom of the.mis file (right after or under the "//--- OBJECT WRITE END ---")
------------------------------------------------------------

//LightTankWeapon//
LightProjectile.count = 9999999999999999999;
LightProjectile.burstcount = 70;
LightProjectile.burstdelay = 0;

//MediumTankWeapon//
Mediumprojectile.count = 9999999999999999999;
Mediumprojectile.burstcount = 70;
Mediumprojectile.burstdelay = 0;

//Heavytank Weapon//
Heavyprojectile.count = 9999999999999999999;
Heavyprojectile.burstcount = 70;
Heavyprojectile.burstdelay = 0;

//BabyBoss Weapon//
BabyBossprojectile.count = 9999999999999999999;
BabyBossprojectile.burstcount = 70;
BabyBossprojectile.burstdelay = 0;

//BossTank Weapon//
BossTankprojectile.count = 9999999999999999999;
BossTankprojectile.burstcount = 70;
BossTankprojectile.burstdelay = 0;

-------------------------------------------------------------------------

HAVE FUN!!!

Only lethal on days that end with "Y"

Last edited: Sunday, July 24, 2005 at 5:47:16 PM

Sunday, July 24, 2005 at 5:45:47 PM

Page : <1> :

insert quote insert url insert email insert image bold italic underline superscript subscript horizontal rule : : Help on using forum codes

Add comment:

HTML is disabled within comments, but ZBB Code is enabled.

Back to the top

Web site designed, maintained and funded by -z- and Dan MacDonald