Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

2 Pages12>
Options
Go to last post Go to first unread
Offline Rrtaya_tsamsiyu  
#1 Posted : Sunday, December 16, 2012 10:07:02 PM(UTC)
Rrtaya_tsamsiyu
Colonel
Joined: 5/8/2012(UTC)
Posts: 615
United States
Location: USA, Tennessee, Home, Livingroom, couch.

Thanks: 102 times
Was thanked: 194 time(s) in 139 post(s)
Just decided to post this as a trouble-shooter of sorts, for those problems common and not so much. And some tips, found below.

If anyone wants more info on one of the tips, please PM me or post a topic.

I'll add more as i remember them. If anyone has more, please post them below.
Note that i will fix typos and possibly simplify things when i add them here, please PM me if you have any questions/comments.

Modded the game files, but nothing changed in-game.
Make sure finalBIG has administrative rights turned on. Otherwise when you save a new file in the C: directory, it will somehow be where you saved it in finalBIG but won't actually be in the folder if you navigate there outside of finalBIG. Also if you edit a file that is in C:, it will always appear modified in finalBIG but won't actually change anything in-game.

Portable Structure type turret not turning.
Make sure the draw module, the one with the condition states and models, is
Draw = W3DOverlordTankDraw ModuleTag_01


Added a new side. Game opens correctly, goes into skirmish menu just fine. But then it crashes while loading.
Check your starting unit(s) and your starting building in PlayerTemplate.INI.

added a unit in INIs. Game works fine. But, when the mouse is hovered over the build unit button, the game crashes.
Check the Prerequisites of the unit. Make sure the building name in the Prerequisite is spelled correctly.

Unit's weapon fires from the middle of the unit, not the barrel.
Make sure the unit's firing bone(s) are named the same on the model and in the INIs.

Your Zero Hour map with custom scripting is crashing all of a sudden?


Unit is invisible in-game.
Make sure the model's name is spelled correctly in it's INIs. Also, don't edit the name of the W3D after its saved.

Edited CommandSet INIs, game crashes. Neither Worldbuilder or Game Debugging finds the problem. CommandButtons definitely have same names as CommandSet commands.
Recheck the spelling and capitalization.
Example;
Commandset NorthKoreaDetentionCampCommandSet
14 = Command_Sell
End
here, the only thing wrong is the S in CommandSet is not capitalized.

Game crashes on unit spawn/create (e.g. about to roll out from factory)
Game can also crash on map load if the unit is to exist on that map from start.

Typing error between multiple files - e.g. upgrade name in weaponsetupgrade.

Projectile Weapons not shooting the right direction.
Make sure that the Pivot Point of the WeaponLaunchBone is facing the right direction; the X axis would be the direction it will shoot.


PortableStructure facing the wrong way even though the model is facing the right way or its aiming offset by an angle.
Check your attach point bones. Make the pivot point face the world's x-axis.

\
This could be a neat effect when done right;
Make the X axis of the WeaponLaunchBone not face the direction of the model. This would also need a Missile Object with a modified Locomotor.
/

\
A tip; I'm not sure it does this with everyone, but when i make unit in Gmax/RenX with bones, save, load, and save it again, the bones will disappear. Which becomes a big problem when trying to skin the model.

You can prevent this by turning on Export Transform in W3D Tools for the bones when you export.

My fix for this is to use what i call Micro Bones. they work the same as regualer bones, but i still export their geometry. they are very small and inside other objects so they are invisible in-game.
/

\
When resizing the geometry in the INIs, GeometryMajor = Length and GeometryMinor = Width
/

\
You cannot remove Upgrade_GLAWorkerShoes from Upgrade.ini. If you do, the game will crash every time you try to move any unit.
/

\
If you want to go over the 128 upgrade limit, you can use objects. Basically build an invulnerable unit with no art parameters (so nothing will be drawn) that uses the GrantUpgradeCreate behavior. In my case, this allows Tank General and Airforce general to use a set of 16 upgrades (Upgrade_TechTreeX_Y where X and Y are between 1 and 4) to unlock various unit, upgrades and sciences. Or Airforce and Stealth generals can get Laser Missiles and AP Rockets respectively, but both use Upgrade_MissileDamage. The only problem is that you shouldn't allow the player to capture other generals' buildings, since one upgrade may have two very different costs depending on the general using it. You may be able to work your way around such problems.

Using the same upgrade for different units/factions will help to avoid the 128 limit.
/

\
If you're going to make a unit, use the most similar unit in FUNCTION, not in appearance.

For example, if you're going to convert the A10 into a controllable plane, you would be vastly better off basing it on the Raptor, not the A10. It will take a lot less time and have a lot less bugs.
/

\
If your making an airfield, you have to give the bones that tell the planes where to go a certain name. The name and purpose of each bone is hard-coded.
The bones are;
You can use the aircraft carrier modules if you want a little more freedom to name things.
/

\
You can mimic the overlord addon code:

ContainInsideSourceObject = Yes

to spawn mixed infantry units inside a transport.
You can spawn any mixture of units in a transport. E.G. 4 Missile defenders + 1 pathfinder in a humvee or 4 minigunners and 4 tank hunters in an assault troop crawler.
All that is required is spawning the units via OCL from it's transport object, like the overlord does.
/

\
There are two methods to help debug your code (as far as i know).
1. change half the edited code back to what it was before. if the problem is still there, your problem is in the other half. keep doing this until you narrow it down to one unit/building/whatever.
2. Open Worldbuilder. Alot of bugs will be caught by this, and if so will be pinpointed down to the exact line the error is at. To go to the line quickly in FinalBIG, go to the INI at fault, and click Edit>Edit in Editor. this will open a notepad style editor. Then go to Edit>Go To. it will open a window where you can type in the line number, and it will take you there.
/

\
The Superweapon generals doesn't build barracks on normal AI.
This is why:

Code:
Quote:

[ns A D][N]USA Barracks -N

*** IF ***
'SupW_AmericaBarracks' has been built by Player '<This Player>'
*** THEN ***
Build a building of type 'SupW_AmericaBarracks'


just a tip...:P
/

\
Some techbuilding stuffs.

Code:
Quote:

*** IF ***
Player '<This Player>' has a tech building within 500.00 of area '[Skirmish]MyInnerPerimeter'

This script works different than you might think, i placed an oilderrick inside of the innerperimeter and the counter 'USA Tech Building Near' was set to 1 while its not within 500.00 but in the innerperimeter.
The result is that the ai builds the techcapture team to go to the nearest tech building in CombatZone which is not there so the team runs straight to the origin of the map (0.0,0.0), really funny imo.
Well to test some more i made a 4000x4000 map with an innerperimeter of 1000x1000 placed an oilderrick on (3800.00, 3800.00) and the counter 'USA Tech Building Near' was set to 1, wtfQuestion .
Point of this whole story....the 500.00 is not 500.00 in WB! and i think you can better use this script
Code:
Quote:

*** IF ***
Player 'PlyrCivilian' has Greater Than or Equal To 1 unit or structure with Kind is 'TECH_BUILDING' in the area 'CombatZone'

than the one i mentioned at the top of the post.
If anyone knows some more details about this stuff than post it if you like.
/

\
If your going to make a large mod, say, two or more entire factions, it will help to have a sorting system for your models. The way i do it is to put three letters in front of the model. The first two are the faction it belongs to, and the third is what kind of model it is.
Example; NKV_Leopard = NorthKoreaVehicle_Leopard
/

\
Using the program FinalBIG can help with INI editing, and you'll need it to make .BIG files. It has search(ctrl+f), a way to auto-add values and modules (right click). And you can use notepad inside of it by clicking “edit with editor,” which is useful to find a line of code as pointed out by using Worldbuilder for debugging.
/

\
When getting into modeling, you'll need Gmax. You'll also need Renx, an addon that lets you export models as W3D, and Coofile's W3D Importer, so you can get your models back into Gmax to edit them.
Once you've gotten that stuff, this tutorial will probley help you get started.

After installing Gmax, put Renx into the C:/gmax/gamepacks folder and put Coolfile's W3D Importer into C:/gmax/scripts, then you should be ready to go.
/

\
If you want a simple mod loader for something your
making, so it dosen't conflict with other mods, you can do this;

Put your mod's .big file in your ZH data directory, in My Documents. Make a shortcut directly to your generals.exe in your main ZH folder. Then, go into the shortcut's properties, to the Target field, and add [-mod "YourModName.big"] without brackets.
Found this info here. Thanks to Zeke of Mystique Game Studios!
Edit; the link went dead, so i changed it to just go to the site. This tip can probably still be found somewhere there in its original form.
Edit2; Site no longer exists.
/

\
Want an easy way to have more than two turrets?
Make units spawn inside a unit/structure that has STATION bones, as seen here;
http://www.moddb.com/mod...working-turrets#imagebox

STATION bones basically tell a unit where to pop up when garrisoned inside a non-inclosing structure, such as the Firebase.

Use this code with your object (from precision_bomber's mod, Death Label: Aerial Superiority)
Code:
Behavior = SpawnPointProductionExitUpdate ModuleTag_spawnloc
  SpawnPointBoneName = STATION
End
 
Behavior                = SpawnBehavior ModuleTag_spawnturt
  SpawnNumber           = 4
  SpawnReplaceDelay     = 10000 ;msec
  SpawnTemplateName     = CzAM_APDSTurret
  CanReclaimOrphans     = No
  SpawnedRequireSpawner = Yes
  SlavesHaveFreeWill    = No
End

Edit; in this case, the bones can be named what you want them to be as long as they have a two digit number after their name. Bone names are designated infront of SpawnPointBoneName.
/

\
If you try putting ANY SCIENCE above Science_America/Science_China/Science_GLA that requires those sciences, the game crashes.
However if you the science you put does NOT have any required sciences then it's totally fine.
/

\######################################################################
Editor's note; At this point if I add more code boxes, the forum breaks and starts missing
where the boxes are supposed to end. From here down code is in green.
I can't simply indent using spaces, as the forum removes them, so I'll use - for that.
/######################################################################

\
You can combine some faction INIs into one file.
So far I've found its possible to put units, objects, buildings, locomotors, & weapons into a single ini file.
However, it needs to be in a certain order; objects, locomotors & weapons must be above the rest, as those respective ini files are read first.
I have not tried putting in OCLs and other stuff into it though.
Its easier to keep track if everything is in one file methinks.

Editor's note; I havn't tried this myself, but be aware that if you use this
method you might not be able to use, say, a weapon, on a unit in a different
INI due to the fact that the weapon won't be found in weapon.INI.
The game may not be able to find it when it is referenced outside of the file it's data is in.
Only one way to find out..
/

\
To make a building perform research you need a production update behavior;
01 Behavior = ProductionUpdate ModuleTag_06
02 --; nothing
03 End

Else the building is only able to use special powers.
/

\
To train units the exit and rally modules are needed;
01 DefaultProductionExitUpdate
02 --[logic requires NaturalRallyPoint x: co-ordinate to match the object GeometryMajorRadius]
03 --UnitCreatePoint = [x: y: z:]
04 --NaturalRallyPoint = [x: y: z:]
05 --UseSpawnRallyPoint = [Yes/No]
06 End


And ProductionUpdate;
01 ProductionUpdate
02
03 [module is required on an object that uses PublicTimer code for any SpecialPower and/or required for units/structures with object upgrades]
04
05 QuantityModifier = [object name,integer] [Redguards uses this so they can comeout of the barracks in pairs]
06 DisabledTypesToProcess = [disabled types list]
07
08 [Allows the use of the DOOR_x_WAITING_OPEN, DOOR_x_CLOSING, DOOR_x_OPENING Model condition state]
09 [X is from 1 to 4 since there's a hardcoded limit of four only]
10 NumDoorAnimations = [integer, maximum is 4] [How many doors to use when unit training is complete?]
11 DoorOpeningTime = [integer, milliseconds] [in mSeconds, how long you want doors to be in open state]
12 DoorWaitOpenTime = [integer, milliseconds] [in mSeconds, time the door stays open, so units can exit]
13 DoorCloseTime = [integer, milliseconds] [in mSeconds, how long you want doors to be in open state]
14
15 MaxQueueEntries = [integer] [If Set to 1, you can't build multiple upgrades at the same time]
16 ConstructionCompleteDuration = [integer, milliseconds] [in mSeconds, wait time so if you have multiple units they don't run over each other]
17
18 End

/

\
If you mention a weapon's name (or anything else, generally) before writing its code, it will crash the game and worldbuilder will tell you that the thing's template was not found.
Example;
01 ;;;Example 1, This will cause a crash
02 ;======================================
03 Weapon EMPDefenderMissileWeapon
04 --Code....
05 --HistoricBonusTime = 1500
06 --HistoricBonusCount = 3
07 --HistoricBonusRadius = 20
08 --HistoricBonusWeapon = EMPDefenderSmallCreationWeapon
09 End
10 Weapon EMPDefenderSmallCreationWeapon
11 --DamageType = FLAME
12 --DeathType = BURNED
13 --FireOCL = SupW_OCL_PatriotEMPEffectSpheroid
14 End
15
16 ;======================================
17 ;======================================
18 ;======================================
19 ;Example 2, this will work
20 ;------------------------------------------------------------------------------
21 Weapon EMPDefenderSmallCreationWeapon
22 --DamageType = FLAME
23 --DeathType = BURNED
24 --FireOCL = SupW_OCL_PatriotEMPEffectSpheroid
25 End
26 ;------------------------------------------------------------------------------
27 Weapon EMPDefenderMissileWeapon
28 --Code....
29 --HistoricBonusTime = 1500
30 --HistoricBonusCount = 3
31 --HistoricBonusRadius = 20
32 --HistoricBonusWeapon = EMPDefenderSmallCreationWeapon
33 End

Notice that in Ex. 1 the code references EMPDefenderSmallCreationWeapon,
which is defined beneath it and therfore does not exist yet. This causes a crash.

Ex. 2 shows these in the correct order.
/

\
Changing the behaviour AIUpdateInterface in a map.ini for a tank will cause it to freeze in game, to solve this specify the tank's locomotor again in the code.
Example;
01 Object ChinaTankGattling
02 --ReplaceModule ModuleTag_03
03 ----Behavior = AIUpdateInterface ModuleTag_03_Override
04 ------;Code...
05 ----End
06 ----Locomotor = SET_NORMAL GattlingTankLocomotor
07 --End
08 End

/

Edited by user Wednesday, December 26, 2018 3:05:16 AM(UTC)  | Reason: adding stuff

one soul at a time
thanks 5 users thanked Rrtaya_tsamsiyu for this useful post.
Gamer. on 12/21/2012(UTC), UTD^Force on 11/15/2014(UTC), Unknown Editor on 5/22/2017(UTC), SkyMix_RMT on 10/23/2017(UTC), Commander Newgate on 1/18/2019(UTC)
Sponsor
Offline Ail-Shan  
#2 Posted : Monday, December 17, 2012 6:19:00 PM(UTC)
Ail-Shan
Private
Joined: 8/31/2012(UTC)
Posts: 22

Was thanked: 3 time(s) in 3 post(s)
This is almost assuredly not going to come up for anyone, but it shut me down for 3 months so I think it bears mentioning:

You cannot remove Upgrade_GLAWorkerShoes from Upgrade.ini. If you do, the game will crash every time you try to move any unit.

Also, in case you want to go over the 128 upgrade limit, you can use objects. Basically build an invulnerable unit with no art parameters (so nothing will be drawn) that uses the GrantUpgradeCreate behavior. In my case, this allows Tank General and Airforce general to use a set of 16 upgrades (Upgrade_TechTreeX_Y where X and Y are between 1 and 4) to unlock various unit, upgrades and sciences. Or Airforce and Stealth generals can get Laser Missiles and AP Rockets respectively, but both use Upgrade_MissileDamage. The only problem is that you shouldn't allow the player to capture other generals' buildings, since one upgrade may have two very different costs depending on the general using it. You may be able to work your way around such problems, but I don't think it's worth the effort.
thanks 1 user thanked Ail-Shan for this useful post.
Rrtaya_tsamsiyu on 12/17/2012(UTC)
Offline NewNightmare  
#3 Posted : Tuesday, December 18, 2012 4:05:04 AM(UTC)
NewNightmare
Colonel
Joined: 5/24/2010(UTC)
Posts: 492

Was thanked: 48 time(s) in 40 post(s)
Game crashes on unit spawn/create (e.g. about to roll out from factory)
Game can also crash on map load if the unit is to exist on that map from start.
Typing error between multiple files - e.g. upgrade name in weaponsetupgrade.
thanks 1 user thanked NewNightmare for this useful post.
Rrtaya_tsamsiyu on 12/18/2012(UTC)
Offline Rrtaya_tsamsiyu  
#4 Posted : Tuesday, December 18, 2012 10:36:21 AM(UTC)
Rrtaya_tsamsiyu
Colonel
Joined: 5/8/2012(UTC)
Posts: 615
United States
Location: USA, Tennessee, Home, Livingroom, couch.

Thanks: 102 times
Was thanked: 194 time(s) in 139 post(s)
added those. thanks guys

Edit; added precision_bomber's and Gamer.'s stuff from below.

Edited by user Thursday, December 20, 2012 12:40:59 PM(UTC)  | Reason: Not specified

one soul at a time
Offline precision_bomber  
#5 Posted : Tuesday, December 18, 2012 10:36:42 AM(UTC)
precision_bomber
Major
Joined: 12/18/2011(UTC)
Posts: 313
Location: Planet Cutezome

Thanks: 7 times
Was thanked: 75 time(s) in 58 post(s)
Projectile Weapons not shooting on the right direction you want them to?

Make sure that the Pivot Point of the WeaponLaunchBone is facing the right direction; the X axis would be the direction it will shoot.

This could be a neat effect though when done right;
Making the X axis not face the direction the whole model is facing would also need a Missile Object with a modified Locomotor.
Death Label:
Reduced back to 3 main factions(and a couple of extras).
Each faction can choose a(or all of them) tech-tree via General's Powers.
Angel Wings: Jets and Anti-Air, Helicopters and Missiles, Hovercraft and Lasers
Red Skulls: Armor Division, Mecha Armada, Drone Swarm
Earth's Saviors: Air Raid, Homeworld Security, Stealth
thanks 1 user thanked precision_bomber for this useful post.
Rrtaya_tsamsiyu on 12/18/2012(UTC)
Offline Gamer.  
#6 Posted : Thursday, December 20, 2012 10:57:08 AM(UTC)
Gamer.
Private
Joined: 8/14/2010(UTC)
Posts: 25
Location: Earth

Thanks: 1 times
Was thanked: 1 time(s) in 1 post(s)
Your Zero Hour map with custom scripting is crashing all of a sudden?

Be extremely careful of the hidden character that is added to the end of unit and structure names when you use the dropdown list to fill in script commands.

Code:
*** IF ***
    True.
*** THEN ***
   Command button: 'Command_ConstructAmericaParticleCannonUplink
' is removed from all objects of type 'AmericaVehicleDozer'.


'Command_ConstructAmericaParticleCannonUplink|<- hidden character causes crash
'

UserPostedImage

You can check for this new character by placing your cursor at the end of the string filled in by the dropbox and hitting backspace once. If a character isn't removed, that was the hidden character you just deleted Smile

'Command_ConstructAmericaParticleCannonUplink|
'
*backspace*
'Command_ConstructAmericaParticleCannonUplink'

Edited by user Thursday, December 20, 2012 11:15:06 AM(UTC)  | Reason: Not specified

" General, do we take prisoners?
No. Kill all they send and they will stop coming.
"
thanks 1 user thanked Gamer. for this useful post.
Rrtaya_tsamsiyu on 12/20/2012(UTC)
Offline Annihilationzh  
#7 Posted : Monday, December 24, 2012 1:52:39 PM(UTC)
Annihilationzh
General
Joined: 8/2/2008(UTC)
Posts: 1,779
United Kingdom

Thanks: 26 times
Was thanked: 475 time(s) in 331 post(s)
Here's one I say all the time: if you're going to make a unit, use the most similar unit in FUNCTION, not in appearance.

For example, if you're going to convert the A10 into a controllable plane, you would be vastly better off basing it on the Raptor, not the A10. It will take a lot less time and have a lot less bugs.



You can mimic the overlord addon code:
Code:
    ContainInsideSourceObject = Yes
to spawn mixed infantry units inside a transport.

Can't think of anything else off the top of my head.

Edited by user Monday, December 24, 2012 1:53:43 PM(UTC)  | Reason: Not specified

If you need help, post in the forum. You'll get help a lot faster than if you send me a PM.

I reject all buddy requests. I don't think 'buddy' needs to be made official. It's not like you're marrying me.
thanks 1 user thanked Annihilationzh for this useful post.
Rrtaya_tsamsiyu on 12/25/2012(UTC)
Offline CommieDog  
#8 Posted : Tuesday, December 25, 2012 3:35:28 AM(UTC)
CommieDog
Administrator
C&C Labs Staff: Labs Staff MemberThe Forgotten Staff: The Forgotten StaffRed Alert Staff: Red Alert Staff MemberAll Stars Staff: All Stars Staff
Joined: 8/3/2003(UTC)
Posts: 3,086
United States

Thanks: 445 times
Was thanked: 186 time(s) in 130 post(s)
Thlis looks like a good topic. Stickied.
UserPostedImage
CommieDog: Because someone has to do your dirty work for you
thanks 1 user thanked CommieDog for this useful post.
Rrtaya_tsamsiyu on 12/26/2012(UTC)
Offline Rrtaya_tsamsiyu  
#9 Posted : Tuesday, December 25, 2012 10:28:38 PM(UTC)
Rrtaya_tsamsiyu
Colonel
Joined: 5/8/2012(UTC)
Posts: 615
United States
Location: USA, Tennessee, Home, Livingroom, couch.

Thanks: 102 times
Was thanked: 194 time(s) in 139 post(s)
Merry Christmas to you to, CommieDog! (thanks)

Annihilation, i added the first part of your post and some stuff you told me about in another topic.
i was wondering about the overlord code tho, what exactly does it do? it sounds like it would keep units inside of the unit/building producing them, instead of letting them walk out into the world, but im not sure.
sorry for the inconvenience, just trying to keep the list of stuff as simple as possible

for a little clarification on this topic, im giving 1 thanks per person. Just sayin so i don't upset anyone by not giving a second thanks. Everyone else can give them out as they want tho.


Edit; thanks for the extra info ZH, added tip.

Edited by user Wednesday, December 26, 2012 7:38:02 PM(UTC)  | Reason: Not specified

one soul at a time
Offline Annihilationzh  
#10 Posted : Wednesday, December 26, 2012 5:07:34 AM(UTC)
Annihilationzh
General
Joined: 8/2/2008(UTC)
Posts: 1,779
United Kingdom

Thanks: 26 times
Was thanked: 475 time(s) in 331 post(s)
Quote:
what exactly does it do? it sounds like it would keep units inside of the unit/building producing them, instead of letting them walk out into the world, but im not sure.

You can spawn any mixture of units in a transport. E.G. 4 Missile defenders + 1 pathfinder in a humvee or 4 minigunners and 4 tank hunters in an assault troop crawler.

All that is required is spawning the units via OCL from it's transport object; like the overlord does.
If you need help, post in the forum. You'll get help a lot faster than if you send me a PM.

I reject all buddy requests. I don't think 'buddy' needs to be made official. It's not like you're marrying me.
Offline acidbrain  
#11 Posted : Thursday, January 10, 2013 11:00:40 AM(UTC)
acidbrain
General
Joined: 12/30/2011(UTC)
Posts: 982

Thanks: 95 times
Was thanked: 574 time(s) in 364 post(s)
The Superweapon generals doesn't build barracks on normal AI.
This is why:

Code:

[ns A D][N]USA Barracks -N

*** IF ***
'SupW_AmericaBarracks' has been built by Player '<This Player>'
*** THEN ***
Build a building of type 'SupW_AmericaBarracks'


just a tip...:P
Panem et kirkinses
thanks 1 user thanked acidbrain for this useful post.
Rrtaya_tsamsiyu on 1/10/2013(UTC)
Offline acidbrain  
#12 Posted : Thursday, January 10, 2013 11:21:51 AM(UTC)
acidbrain
General
Joined: 12/30/2011(UTC)
Posts: 982

Thanks: 95 times
Was thanked: 574 time(s) in 364 post(s)
Some techbuilding stuffs.

Code:

*** IF ***
Player '<This Player>' has a tech building within 500.00 of  area '[Skirmish]MyInnerPerimeter'

This script works different than you might think, i placed an oilderrick inside of the innerperimeter and the counter 'USA Tech Building Near' was set to 1 while its not within 500.00 but in the innerperimeter.
The result is that the ai builds the techcapture team to go to the nearest tech building in CombatZone which is not there so the team runs straight to the origin of the map (0.0,0.0), really funny imo.
Well to test some more i made a 4000x4000 map with an innerperimeter of 1000x1000 placed an oilderrick on (3800.00, 3800.00) and the counter 'USA Tech Building Near' was set to 1, wtfQuestion .
Point of this whole story....the 500.00 is not 500.00 in WB! and i think you can better use the script
Code:

*** IF ***
Player 'PlyrCivilian' has Greater Than or Equal To  1  unit or structure with Kind is 'TECH_BUILDING' in the  area 'CombatZone'

than the one i mentioned at the top of the post.
If anyone knows some more details about this stuff than post it if you like.
Panem et kirkinses
Offline Rrtaya_tsamsiyu  
#13 Posted : Tuesday, March 5, 2013 8:19:58 AM(UTC)
Rrtaya_tsamsiyu
Colonel
Joined: 5/8/2012(UTC)
Posts: 615
United States
Location: USA, Tennessee, Home, Livingroom, couch.

Thanks: 102 times
Was thanked: 194 time(s) in 139 post(s)
Decided to let people know of the most resent change on this list;

Added a tip on how to let your mod launch itself. Sorta like a very simple mod launcher. i've been searching for a launcher program for a while now, even pm'ed TheHunter (leader of SWR Productions, maker of mods like Rise of the Reds and Shockwave) to see if i could use their launcher, didn't get a reply when i asked that. The only launcher i found that could do what i wanted was in a post of a no longer active user (CodeCat), of another forum, and the link was dead.

Anyways, the new tip is at the bottom of the post, and is very easy to do.

In the tip is also a link to the post that i found. In that post it says you can't have more than two mod files using this method, i have found this to not be true. As long as the first file the game opens has PlayerTemplate.ini, all of your other files should be able to stay in your main ZH directory if you want.

Using this method, you can have as many mods as you want, as long as you have enough hard drive space, lol.
one soul at a time
Offline precision_bomber  
#14 Posted : Monday, May 20, 2013 11:15:17 AM(UTC)
precision_bomber
Major
Joined: 12/18/2011(UTC)
Posts: 313
Location: Planet Cutezome

Thanks: 7 times
Was thanked: 75 time(s) in 58 post(s)
GUYS! I HAVE FIGURED OUT HOW TO MAKE 3+ TURRETS WORK.

I REMEMBERED BACK AT AN OLD MOD NAMED: GENERALS ZERO HOUR REBORN THAT ONE OF THE FIREBASES HAD 4 SENTRY TURRETS ON IT.

THEY WERE SIMPLY SENTRY DRONES.

THE FIREBASE THEY WERE ON SPAWNS THEM ON THE STATION BONES.

TO CUT SHORT IT USES STINGER SITE LOGIC

(sorry for the caps, I was very excited)

http://www.moddb.com/mod...working-turrets#imagebox
http://www.moddb.com/mod...orking-turrets1#imagebox

CODE(from my mod)
Code:

    Behavior = SpawnPointProductionExitUpdate ModuleTag_spawnloc
      SpawnPointBoneName = STATION
    End

    Behavior                = SpawnBehavior ModuleTag_spawnturt
      SpawnNumber           = 4
      SpawnReplaceDelay     = 10000 ;msec
      SpawnTemplateName     = CzAM_APDSTurret
      CanReclaimOrphans     = No
      SpawnedRequireSpawner = Yes
      SlavesHaveFreeWill    = No
    End

Death Label:
Reduced back to 3 main factions(and a couple of extras).
Each faction can choose a(or all of them) tech-tree via General's Powers.
Angel Wings: Jets and Anti-Air, Helicopters and Missiles, Hovercraft and Lasers
Red Skulls: Armor Division, Mecha Armada, Drone Swarm
Earth's Saviors: Air Raid, Homeworld Security, Stealth
thanks 1 user thanked precision_bomber for this useful post.
UTD^Force on 2/5/2015(UTC)
Offline Annihilationzh  
#15 Posted : Monday, May 20, 2013 12:16:07 PM(UTC)
Annihilationzh
General
Joined: 8/2/2008(UTC)
Posts: 1,779
United Kingdom

Thanks: 26 times
Was thanked: 475 time(s) in 331 post(s)
Quote:
GUYS! I HAVE FIGURED OUT HOW TO MAKE 3+ TURRETS WORK.

An absolutely prime example of this:
Quote:
Here's one I say all the time: if you're going to make a unit, use the most similar unit in FUNCTION, not in appearance.


If you think outside the box, you have far fewer limits.

Edited by user Monday, May 20, 2013 12:18:21 PM(UTC)  | Reason: Not specified

If you need help, post in the forum. You'll get help a lot faster than if you send me a PM.

I reject all buddy requests. I don't think 'buddy' needs to be made official. It's not like you're marrying me.
Offline Rrtaya_tsamsiyu  
#16 Posted : Monday, May 20, 2013 2:16:07 PM(UTC)
Rrtaya_tsamsiyu
Colonel
Joined: 5/8/2012(UTC)
Posts: 615
United States
Location: USA, Tennessee, Home, Livingroom, couch.

Thanks: 102 times
Was thanked: 194 time(s) in 139 post(s)
Added the tip. Heavily edited it for tho, to try and explain it well while keeping it simple for people new to modding.

Edit; edited it so it says it doesn't always have to be STATION bones.

Edited by user Wednesday, July 31, 2013 4:07:00 PM(UTC)  | Reason: Not specified

one soul at a time
Offline UTD^Force  
#17 Posted : Wednesday, September 3, 2014 10:53:04 AM(UTC)
UTD^Force
Colonel
C&C Labs Staff: Labs Staff MemberMaps Staff: Maps Staff Member
Joined: 8/13/2013(UTC)
Posts: 817
Jordan
Location: Middle east

Thanks: 430 times
Was thanked: 184 time(s) in 168 post(s)
There isn't a topic for needed scripts in the worldbuilder forum, so I posted this here.
This is something I guess every mapper wanted to do, to make a plane take off!!! Without INIs, I discovered this a few years ago, but found that most mappers change the cargo plane's locomotor so it can't fly.
Here are the scripts, when you read them you will make a plane take off, but the scripts will spawn a plane at a position you can change the position as you wish.
If you are on the phone so can't read the scripts, here are them:

These scripts are from GLA mission 01, in ZH I guess.
File Attachment(s):
Plane Take Off Scripts.zip (3kb) downloaded 194 time(s).
Proud Muslim

UTD^Force

Moderator and former map reviewer
CnC Labs
Offline menard  
#18 Posted : Monday, December 22, 2014 5:51:32 AM(UTC)
menard
Major
Joined: 8/29/2014(UTC)
Posts: 105
Philippines
Location: Planet of the Apes

Thanks: 4 times
Was thanked: 6 time(s) in 5 post(s)
Originally Posted by: UTD^Force Go to Quoted Post
There isn't a topic for needed scripts in the worldbuilder forum, so I posted this here.
This is something I guess every mapper wanted to do, to make a plane take off!!! Without INIs, I discovered this a few years ago, but found that most mappers change the cargo plane's locomotor so it can't fly.
Here are the scripts, when you read them you will make a plane take off, but the scripts will spawn a plane at a position you can change the position as you wish.
If you are on the phone so can't read the scripts, here are them:

These scripts are from GLA mission 01, in ZH I guess.


Thanks for this script sir now how about the script of cine_plane Landing?Smile
Offline Gameanater  
#19 Posted : Thursday, February 5, 2015 6:12:26 PM(UTC)
Gameanater
General
C&C Labs Staff: Labs Staff MemberMaps Staff: Maps Staff Member
Joined: 5/13/2013(UTC)
Posts: 1,537
United States
Location: Right Behind You

Thanks: 574 times
Was thanked: 166 time(s) in 144 post(s)
Another way to avoid the hardcoded upgrade limit:

Re-use existing upgrades.

For example, do you want an armor upgrade for the Chinese Tank General?

Re-use the USA Composite Armor upgrade.

Copy the Command Button from the Strategy Center's CommandSet to the Tank_ChinaPropagandaCenter's CommandSet.

Then add the appropriate code to whatever tanks you want to have the upgrade for. Just make sure the armor upgrade behavior stuff is triggered by Upgrade_AmericanCompositeArmor.

Source: Personal experience with my mod, Generals:Domination.
Any old friends still on here can add me on discord @jcdenton2187. I'm far more likely to respond there.
thanks 1 user thanked Gameanater for this useful post.
Rrtaya_tsamsiyu on 2/5/2015(UTC)
Offline UTD^Force  
#20 Posted : Thursday, February 5, 2015 7:46:33 PM(UTC)
UTD^Force
Colonel
C&C Labs Staff: Labs Staff MemberMaps Staff: Maps Staff Member
Joined: 8/13/2013(UTC)
Posts: 817
Jordan
Location: Middle east

Thanks: 430 times
Was thanked: 184 time(s) in 168 post(s)
Another solution if your bones disappear when you import, export and then import your model again.
For a weird reason the box in the W3D export options "Export Transform (bone)" is automatically unchecked for the bones. So, all you have to do is press H, select your bones and check the box for the Export Transform option :)
Do that every time you import and export your model.
Proud Muslim

UTD^Force

Moderator and former map reviewer
CnC Labs
thanks 1 user thanked UTD^Force for this useful post.
Rrtaya_tsamsiyu on 2/5/2015(UTC)
Users browsing this topic
Guest
Similar Topics
Top Neverwinter Tips And Tricks To Help You Get Ahead (Generals: Maps and World Builder)
by amazingz 10/25/2016 2:08:59 AM(UTC)
Simple Tips And Tricks To Help You With Your Maplestory 2 (Mapping & Modding Tutorials)
by rsmarks 9/5/2016 8:57:43 PM(UTC)
2 Pages12>
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.