Jump to content

ztz2019

Members
  • Content count

    264
  • Joined

  • Last visited

Everything posted by ztz2019

  1. I want to change camera sight but dont know how todo
  2. Supposing a unit who has a longrange weapon, and it will approach the target to let weapon fire as usual(its VisionRange is longer than weapon range). Now I need the unit still be approaching to the target until it can get in touch with( or contact with? Don't mind my grammar) it. Once I tried to add a very short range dummy weapon and attempt it will run to target, but it stopped when the longrange weapon can open fire, never go further.
  3. Since spectre and Juggernaught always make themselves into dangerous place to get better shooting range, I tried to make them become immobile firebase and succeeded in meeting expectation. I just change DeployStyleAIUpdate into normal AIUpdate and add corresponding SP/Upgrade/Attr... with unpacking and packing buttons and so on. However, I want to let this kind of unit can both be mobile siege unit just like original game when meet with sudden enemy situation and immobile firebase by manual operation. So I returned AIUpdate to DeployStyleAIUpdate, and it went wrong no doubt. It will unpacking to deploy status after I click the unpacking button, the unit looks also in deploy model state. But it will unpack again when it is about to fire. And also it will pack twice, one for packing button, one for the true packing function itself. So what should I do? I want it autonomously unpacking to immediately firing as original game and manual operation to be immobile firebase if I click button and won't unpacking or packing twice. And I uploaded the code which can be compiled by Wrathed. testmod.zip
  4. Could you explain it more clearly? Is SWAPPING_TO_WEAPONSET_1/2/3 in modelstate? And is any codes for example?
  5. I could just make 2 weapons which the new one is "fake deploy" that firing without deploy needed and preattackdelay=3.5s and have an "deploying" anim, so it looks likev unpacking to fire but in fact it's just normal firing like tanks without unpacking. But I still want to realize the true 2 firing mode with real deploy function like CC2 artillery and juggernaught.
  6. I may repeat my problem to let others understood. Now the KW/TW original set is if a unit contains 2 weapons, it will just move to the longer range weapon's range and stop to fire, so the shorter range weapon is unused. I need a kind of weapon or unit set, that when the unit contains two different range weapons, 1 for long weapon range, the other for short range, and though target is get in longrange weapon, it will still run to short one's range, so both 2 weapons could fire normally.
  7. There's another problem which if be solved may helpful to the first issue, that's how to truely remake ZH's overlord modularization upgrade. Now most of CC3/KW mod which try to realize Overlord sub turret upgrade function is in fact using unit's own weapon and model, by using the upgrade to show the hidden sub obj. and active the sub weapon. The ZH's overlord modularization upgrade is adding independent sub unit like spawned slave in KW such as repairing drone and invader fighter, but I always can't realize a totally same turret. If Overlord upgrade could be realized, the first issue can be solved, too. I can using sub turret with longrange and parent unit has shortrange weapon.
  8. In fact my 1.08 gamma never compiled succeed even once time.
  9. ztz2019

    Kanes Wrath Skirmish AI Schemas

    May the Dickman bless you.
  10. Thx a lot, it's very useful.
  11. I tried to add FireWeaponUpdate for a KW unit to reproduce microwave tank's BBQ circle, it works well when MW tank is static, but invalid when it moves. It's not weapon itself's problem since I already set CanFireWhileMoving="true". So anyone noticed this phenomenon?
  12. I want to give Cmdo a new SP just like boobytrap to make an ocl on Tibfield, but it can't fire the SpecialWeapon if on Tibfield, but run's ok on all other obj. such as Tib, structures, husks or bridge. Cmdo's code: <SpecialPowerDispatchSpecialPower id="ModuleTag_BoobyTrapDispatch" SpecialPowerTemplate="SpecialPower_PlaceSeedDispatch"> <SpecialPower SpecialPowerTemplate="SpecialPower_PlaceSeedAtTiberiumField" /> </SpecialPowerDispatchSpecialPower> <SpecialPower id="ModuleTag_BoobyTrapTechBuilding" SpecialPowerTemplate="SpecialPower_PlaceSeedAtTiberiumField" UpdateModuleStartsAttack="true" /> <WeaponFireSpecialAbilityUpdate id="ModuleTag_TargetedSensorPodUpdate" SpecialPowerTemplate="SpecialPower_PlaceSeedAtTiberiumField" SpecialWeapon="MutantPlaceSeedWeapon" StartAbilityRange="5" UnpackTime="1.5s" PackTime="1.0s" /> Wpn code: <WeaponTemplate id="MutantPlaceSeedWeapon" Name="MutantPlaceSeedWeapon" AttackRange="100.0" WeaponSpeed="800" MinWeaponSpeed="800" MaxWeaponSpeed="810" AcceptableAimDelta="20d" AutoReloadsClip="AUTO" ClipSize="0" AntiMask="ANTI_GROUND" CanFireWhileMoving="true"> <FiringDuration MinSeconds="1.1s" MaxSeconds="1.1s" /> <Nuggets> <WeaponOCLNugget WeaponOCL="OCL_AlienTibHive" /> </Nuggets> </WeaponTemplate> SP code: <SpecialPowerTemplate id="SpecialPower_PlaceSeedDispatch" Flags="NEEDS_OBJECT_FILTER NO_FORBIDDEN_OBJECTS SHARED_SYNC" TargetType="LOCATION" NameOfVoiceNameToUseAsInitiateIntendToDoVoice="VoiceBoobyTrap" WaypointModeTerminal="false" RadiusCursorRadius="20" ForbiddenObjectRange="100"> <!-- or just like this, both are effective <ObjectFilter Rule="ANY" Include="TIBERIUM_FIELD"> </ObjectFilter> --> <ObjectFilter Rule="ANY"> <IncludeThing>TiberiumField</IncludeThing> <IncludeThing>TiberiumFieldBlue</IncludeThing> <IncludeThing>TiberiumFieldRedZone</IncludeThing> </ObjectFilter> <ForbiddenObjectFilter Rule="ANY"> <IncludeThing>AlienTibHive</IncludeThing> <IncludeThing>AlienSporePod</IncludeThing> <IncludeThing>Reaper17GrowthStimulator</IncludeThing> <IncludeThing>Traveler59SporePod</IncludeThing> <IncludeThing>Tiberium</IncludeThing> </ForbiddenObjectFilter> </SpecialPowerTemplate> Just copy ocl TibHive's code from AlienControlCenter can't set the StartAbilityRange and it can active the SP anywhere on the map, I still need Cmdo runs to Tibfield herself and drop the ocl. So how to add an ocl SP on Tibfield to a unit?
  13. Well, I fixed this bug, it's not bug, only give TIbfield's model an OBBox to make it selectable is enough.
  14. I still can't realize this function, I tried to research TibHive's code, but I could just let ocl suddenly appears on TibField , can't wait until Cmdo approaching to it to build up. It seems I need to explain it more clearly, the function I need is like building a bunker on TibField, it needs unit choose target (to TIbfield) then come up to TibField and begin to build the structure on Tibfield.
  15. I still can't realize the ocl on TibField, so I put on my code to anyone learning to fix it, thanks any how. Please try to realize one unit can build/dig/ocl sth. on TibField, thanks again. Data.7z
  16. I just copy Saboteur's code and didn't modify it much. I now use like GDIRifleMan's digin SP(set Options="NEED_TARGET_POS") but still can't ocl on TibField Hole.
  17. OCL can create different units each time, but the rally point is a problem, new ocled unit always stands still at warfactory.
  18. To use Banner module seems can only add 1 member to squad, I once tried go straight add new RankInfo and RankToReleaseWhenAttacking to add 2 new members, but the new members don't appear from barrack, and the squad HP isn't full. However, if I sell out the barrack, the squad with new member will come out. So is there anyway to add more than 1 member to a squad in KW? And there's another question, how to build different unit by single unit_build button? I mean when training a unit by unit_built button, it will randomly come out different kinds of unit, not meaning 1 time several units come out together. By using RandomModelCondition only can let same unit with different exterior, but I need to true different unit both exterior and inner property.
  19. No, I need to produce true different unit, not just look different. I've already realize looking different by randommodelcondition, but how to produce true different unit every time ?
  20. In TS and FS cyborg will become half body and keep this state even if healed to full HP, both modelstate and speed is changed and kept forever. I to a certain extent realized it in KW. In script there's a state ReallyDamaged, so just add ObjectGrantUpgrade(xxx) to change the modelstate and speed, also armor and supression. So it could avoid when cyborg is fixed to full HP the model suddenly becomes normal.
  21. 我有句妈卖批不知当讲不当讲。 I'm considering whether or not to tell the words"mother fxxker" in my thought.
  22. WED can open and scan TW & CC4 big file, open file-> load game definition and choose TW's definition xml, the prograss bar will become green, and if choose CC4 xml, it turns blue.
  23. Well, I changed weaponspeed, but still fast as original, no changing, I don't know why, and I didn't change any other code. I changed weaponspeed to 20, but still as fast as before, what's wrong or maybe I misunderstood?
×