Jump to content

Can someone take a look at this for me?


Guest Seifer

Recommended Posts

Guest Seifer

I'm helping a mate with her mod due to her not haivng the time. I've written a few BAT files to be processed when Weidu exits mod installation but it doesn't seem to like it. The parsing errors seem to focus on this element, and for the love of Mary, I can't figure it out. Any ideas are appreciated

 

BACKUP ~Neh'taniel\backup~

AUTHOR ~theroguedrow@yahoo.com~

AUTO_TRA ~Neh'taniel/%s~

AT_INTERACTIVE_EXIT ~Neh'taniel\Sound\Instal_S.BAT~

BEGIN ~Neh'taniel NPC Romance Mod~

LANGUAGE ~English~

      ~English~

      ~Neh'taniel/English/Setup.tra~

 

I've already replaced the Interactive exit with a straight exit command and no cookie, still hates it. It appears to focus on the word 'language' as an error.

Link to comment

LANGUAGE should be part of the tp2 header, it should be place after anything else in the header and before you BEGIN a component. AT_INTERACTIVE_EXIT is a tp2 action these must be part of a component or an ALWAYS flag.

//TP2 File (AUTHOR & BACKUP)
BACKUP ~Neh'taniel\backup~
AUTHOR ~theroguedrow@yahoo.com~

//TP2 Flags (AUTO_TRA, ALLOW_MISSING, ASK_EVERY_COMPONENT & ALWAYS)
AUTO_TRA ~Neh'taniel/%s~

//TP2 Language Options
LANGUAGE ~English~
         ~English~
         ~Neh'taniel/English/Setup.tra~

BEGIN ~Neh'taniel NPC Romance Mod~
AT_INTERACTIVE_EXIT ~Neh'taniel\Sound\Instal_S.BAT~

//TP2 File (AUTHOR & BACKUP)
BACKUP ~Neh'taniel\backup~
AUTHOR ~theroguedrow@yahoo.com~

//TP2 Flags (AUTO_TRA, ALLOW_MISSING, ASK_EVERY_COMPONENT & ALWAYS)
AUTO_TRA ~Neh'taniel/%s~
ALWAYS AT_INTERACTIVE_EXIT ~Neh'taniel\Sound\Instal_S.BAT~ END

//TP2 Language Options
LANGUAGE ~English~
         ~English~
         ~Neh'taniel/English/Setup.tra~

BEGIN ~Neh'taniel NPC Romance Mod~

Either of the above examples will work. I recommend using the first one for running a batch file.

Link to comment

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...