Jump to content


Hawkeye

Member Since 12 Mar 2005
Offline Last Active Feb 12 2009 10:56 AM

Posts I've Made

In Topic: CommandSet Switch Bug

30 July 2005 - 08:56 AM

Sorry for assuming, I assumed if he tried it he knew that much. I hope I didn't assume incorrectly Hawkeye...

<{POST_SNAPBACK}>

No you didn't :) I've tried it before, just never actually managed to get it working - then real life got in the way with exams and whatnot - I'll give this another go today :D
Thinking back though, I don't think I've got anything to work without changing it umpteen times, reverting to back up inis and changing those :sad:

In Topic: CommandSet Switch Bug

29 July 2005 - 10:45 PM

I hope you don't mind me asking, but can you post that code please? Or direct me to where it's been posted before, thats something I wasn't able to get to work :(

In Topic: yay all me units level up

27 July 2005 - 09:02 AM

Nice, but isnt 100 levels a bit large? I have mine up to level 30 and that takes forever to do, although I suppose it depends on how much experience they require. ;) Took me forever to add all their ranks informations too :p

In Topic: A perfect example of how NOT to talk to modders

02 July 2005 - 08:51 AM

Quick! Someone find my Dorkrist, the Noob Cleaver!

<{POST_SNAPBACK}>

lol - I'll remember that one for a while :blink:

In Topic: Add hero to Campaign

17 June 2005 - 05:53 PM

I've managed to get heros into the Campaign before, but it depends what you want to do with them. I've had a hero join the fellowship before, and move with them until they split at Amon Hen. He then joined the Aragorn party and went with them. He then went with Gandalf, Boromir and Pippin to Gondoe and joined the Gondorian Army.

LivingWorldPlayerArmy
	Name = FellowshipPlayerArmy
	DisplayNameTag = LWA:Fellowship	
	Color = R:255 G:0 B:0
	NightColor = R:0 G:255 B:0
	ArmyEntry
  ThingTemplate = GondorAragorn
  Quantity = 1
	End
	ArmyEntry
  ThingTemplate = GondorBoromir
  Quantity = 1
	End
	ArmyEntry
  ThingTemplate = GondorGandalfGrey
  Quantity = 1
	End
	ArmyEntry
  ThingTemplate = RohanGimli
  Quantity = 1
	End
	ArmyEntry
  ThingTemplate = RohanLegolas
  Quantity = 1
	End
	ArmyEntry
  ThingTemplate = RohanFrodo
  Quantity = 1
	End
	ArmyEntry
  ThingTemplate = RohanPippin
  Quantity = 1
	End
	ArmyEntry
  ThingTemplate = RohanMerry
  Quantity = 1
	End
	ArmyEntry
  ThingTemplate = RohanSam
  Quantity = 1
	End
	ArmyEntry
  ThingTemplate = GondorIsildur
  Quantity = 1
	End
End
I added Isildur to the bottom.

Then I found the splitarmy code and created my own

LivingWorldPlayerArmy
	Name = IsildurSplitArmy
	DisplayNameTag = LWA:Gondor
	ArmyEntry
  ThingTemplate = GondorIsildur
  Quantity = 1
	End
End

Then, back towards the top of the file, I added this:

 MergePlayerArmy
  	SourceArmy = EomerPlayerArmy
  	DestArmy = GandalfPippinBoromirPlayerArmy
  	SplitArmyTemplate = IsildurSplitArmy
  	SplitArmy = Yes
  End

That is all the changes I made to the gondorcampaign file, I think.