Jump to content


Photo

A couple of reports


  • Please log in to reply
2 replies to this topic

#1 Sleawer

Sleawer
  • Member
  • 7 posts

Posted 05 July 2008 - 08:45 AM

Hello,

After taking a look at "Setup-Bonehillv215.tp2", I noticed that one of the code fragments looks for the creature file "OGREMA.CRE" (see relevant fragment below). I believe it should check for "_OGREMA.CRE" for Tutu users. I was unable to install the patch until I modified this line.

I'm still unsure if the mod is intended to be played in EasyTutu (probably not until the WM is updated), but I thought this might be worth mentioning.

COPY_EXISTING	~OGREMA.CRE~	~override/BHOGREMA.CRE~
  PATCH_IF (SOURCE_SIZE > 0x2d3) THEN BEGIN	// protects against invalid files
	WRITE_ASCII	0x258		~MAGE6~	#8	// Race 
  END
BUT_ONLY_IF_IT_CHANGES


As a side note, I have read from a previous user about a minor issue with GTIMES.IDS not containing the "TWO HOURS" paramenter required by the mod. I had this problem too, but as of now I can't replicate it again. According to NI it is now there, if I have more info I'll post back in this same post.

Thanks in advance.

Edit: grammar

Edited by Sleawer, 05 July 2008 - 08:47 AM.


#2 erebusant

erebusant

    It takes a village...

  • Modder
  • 2109 posts

Posted 11 July 2008 - 02:12 PM

Hello,

After taking a look at "Setup-Bonehillv215.tp2", I noticed that one of the code fragments looks for the creature file "OGREMA.CRE" (see relevant fragment below). I believe it should check for "_OGREMA.CRE" for Tutu users. I was unable to install the patch until I modified this line.

I'm still unsure if the mod is intended to be played in EasyTutu (probably not until the WM is updated), but I thought this might be worth mentioning.

COPY_EXISTING	~OGREMA.CRE~	~override/BHOGREMA.CRE~
  PATCH_IF (SOURCE_SIZE > 0x2d3) THEN BEGIN	// protects against invalid files
	WRITE_ASCII	0x258		~MAGE6~	#8	// Race 
  END
BUT_ONLY_IF_IT_CHANGES


As a side note, I have read from a previous user about a minor issue with GTIMES.IDS not containing the "TWO HOURS" paramenter required by the mod. I had this problem too, but as of now I can't replicate it again. According to NI it is now there, if I have more info I'll post back in this same post.

Thanks in advance.

Edit: grammar

I'll update the code in the .tp2 to install either OGREMA or _OGREMA dependant upon BGT or Tutu install.
Edit** This ought to do it;

ACTION_IF NOT FILE_EXISTS_IN_GAME ~AR6526.ARE~ THEN BEGIN
  COPY_EXISTING ~_OGREMA.CRE~ ~override/BHOGREMA.CRE~
	PATCH_IF (SOURCE_SIZE > 0x2d3) THEN BEGIN // protects against invalid files
	  WRITE_ASCII 0x258 ~_MAGE6~ #8 // Race
	END
  BUT_ONLY_IF_IT_CHANGES
END
  ELSE BEGIN
	COPY_EXISTING ~OGREMA.CRE~ ~override/BHOGREMA.CRE~
	  PATCH_IF (SOURCE_SIZE > 0x2d3) THEN BEGIN // protects against invalid files
		WRITE_ASCII 0x258 ~MAGE6~ #8 // Race
	  END
	BUT_ONLY_IF_IT_CHANGES
  END

Edited by erebusant, 11 July 2008 - 02:48 PM.

It takes a village...


#3 Sleawer

Sleawer
  • Member
  • 7 posts

Posted 12 July 2008 - 08:32 AM

Great. Thanks, erebusant.

Now we only have to wait until WM is compatible with EasyTutu (I believe you're working on it) and everything will be perfect.