Author Topic: Embarrassing TP2 problems  (Read 1669 times)

Offline Western Paladin

  • You're not fooling me, 'cause I can see, the way you shake and shiver.
  • Planewalker
  • *****
  • Posts: 145
  • Gender: Male
  • Jeepers!
    • Gibberlings Three
Embarrassing TP2 problems
« on: December 12, 2005, 11:07:06 PM »
So I was trying to make a simple mod where I just copy five items and their descriptions into my override folder. I followed the format in Rastor's item making tutorial with a .tra file where the descriptions are. In fact, I even copied the item making tutorial's sample .tra file as a starting point and put in the descriptions for my items. However, I keep getting a parse error when I run my .exe file - and the part where the error appears is line 2, that has my name. I'm sure I've made some kind of embarrassing and elementary mistake. What is this problem likely to be?

I thank any and all in advance.
"What was that? I couldn't hear you over the STREET JUSTICE!"
-- Stan Smith, American Dad!

Offline ronin

  • Planewalker
  • *****
  • Posts: 94
Re: Embarrassing TP2 problems
« Reply #1 on: December 13, 2005, 01:06:41 AM »
Can you post the first few lines, including the one with the error in it?

ronin

Offline Shed

  • Planewalker
  • *****
  • Posts: 48
  • Gender: Male
  • ZOMG!
    • OMGWeRTehFuny
Re: Embarrassing TP2 problems
« Reply #2 on: December 13, 2005, 01:17:04 PM »
You probably forgot the tildas.
Quote from: jcompton
Whatever, man. We'll just see what happens when Seifer and Shed have another attack of "omg we are teh funy".

Offline jcompton

  • Niche Exploiter
  • Administrator
  • Planewalker
  • *****
  • Posts: 7246
Re: Embarrassing TP2 problems
« Reply #3 on: December 13, 2005, 01:18:56 PM »
Or you didn't save your TP2 as a text file but instead accidentally saved it as Unicode, RTF, DOC, etc.
Cespenar says, "Kelsey and friends be at the Pocket Plane? Ohhh yesssss!" http://www.pocketplane.net

Offline Western Paladin

  • You're not fooling me, 'cause I can see, the way you shake and shiver.
  • Planewalker
  • *****
  • Posts: 145
  • Gender: Male
  • Jeepers!
    • Gibberlings Three
Re: Embarrassing TP2 problems
« Reply #4 on: December 13, 2005, 07:55:33 PM »
I'm away from my real computer now so I can't post the code at this exact minute. However, I recall that due to my missing a click when opening an actual mod's TP2 file, all TP2 files on my computer are recognized as and have the icons of ConTEXT documents. Is this likely to have screwed something up? I didn't think it would, but you never know. (Okay, I never know. :) )
"What was that? I couldn't hear you over the STREET JUSTICE!"
-- Stan Smith, American Dad!

Offline Andyr

  • Dance Commander
  • PPG
  • Planewalker
  • *****
  • Posts: 3178
  • Gender: Male
    • The Gibberlings Three IE mod community
Re: Embarrassing TP2 problems
« Reply #5 on: December 15, 2005, 06:35:54 PM »
Nope, it is fine. I have tp2s, .bafs and .ds (as well as a few programming files) set to open with ConTEXT and it doesn't make a difference (it only means that program is associated with double-clicking the icon, and won't affect other programs handling it).
"We are the Gibberlings Three, as merry a band as you ever did see..." - Home of IE mods

<jcompton> Suggested plugs include "Click here so Compton doesn't ban me. http://www.pocketplane.net/ub"

I am unfortunately not often about these days so the best way to get hold of me is via email.

Offline Western Paladin

  • You're not fooling me, 'cause I can see, the way you shake and shiver.
  • Planewalker
  • *****
  • Posts: 145
  • Gender: Male
  • Jeepers!
    • Gibberlings Three
Re: Embarrassing TP2 problems
« Reply #6 on: December 22, 2005, 11:14:43 PM »
I finally had a chance to fiddle with it some more. I seem to have made some progress compared to where I was before, but I have become stuck again. Now I get this error:

Quote
Install Component [Western Paladin's Enhanced Longswords]
[Y]es or [N]o or [Q]uit?
Installing [Western Paladin's Enhanced Longswords]
Copying and patching 1 file ...
ERROR: error loading [wpsword/sw1h24]
Stopping installation because of error.

ERROR Installing [Western Paladin's Enhanced Longswords], rolling back to previous state
[wpsword/backup/0/UNSETSTR.0] SET_STRING uninstall info not found
WARNING: [wpsword/backup/0/UNINSTALL.0] is a 0 byte file
[wpsword/backup/0/UNINSTALL.0] loaded, 0 bytes
Will uninstall   0 files for [SETUP-WPSWORD.TP2] component 0.
Uninstalled      0 files for [SETUP-WPSWORD.TP2] component 0.
ERROR: Unix.Unix_error(20, "stat", "wpsword/sw1h24")
PLEASE email the file SETUP-WPSWORD.DEBUG to western_paladin@hotmail.com
[English] has 0 top-level TRA files



Edit: The code, in its entirety.

Quote

BACKUP ~wpsword/backup~
AUTHOR ~western_paladin@hotmail.com~

LANGUAGE ~English~
         ~wpsword/american/setup.tra~

BEGIN ~Western Paladin's Enhanced Longswords~

 COPY ~wpsword/sw1h24~ ~override/sw1h24~
 SAY NAME1 @0
 SAY UNIDENTIFIED_DESC @1
 SAY NAME2 @3
 SAY DESC @4

 COPY ~wpsword/sw1h36~ ~override/sw1h36~
 SAY NAME1 @0
 SAY UNIDENTIFIED_DESC @1
 SAY NAME2 @5
 SAY DESC @6

 COPY ~wpsword/sw1h40~ ~override/sw1h40~
 SAY NAME1 @0
 SAY UNIDENTIFIED_DESC @1
 SAY NAME2 @7
 SAY DESC @8

 COPY ~wpsword/sw1h60~ ~override/sw1h60~
 SAY NAME1 @0
 SAY UNIDENTIFIED_DESC @1
 SAY NAME2 @9
 SAY DESC @10

 COPY ~wpsword/sw1h61~ ~override/sw1h61~
 SAY NAME1 @0
 SAY UNIDENTIFIED_DESC @1
 SAY NAME2 @11
 SAY DESC @12

« Last Edit: December 22, 2005, 11:31:07 PM by Western Paladin »
"What was that? I couldn't hear you over the STREET JUSTICE!"
-- Stan Smith, American Dad!

Offline Ascension64

  • Planewalker
  • *****
  • Posts: 472
Re: Embarrassing TP2 problems
« Reply #7 on: December 23, 2005, 02:58:17 AM »
do your items have .ITM extension?  If so, both the source and destination names need the file extension, e.g.

 COPY ~wpsword/sw1h24.ITM~ ~override/sw1h24.ITM~

and so on...

Offline Andyr

  • Dance Commander
  • PPG
  • Planewalker
  • *****
  • Posts: 3178
  • Gender: Male
    • The Gibberlings Three IE mod community
Re: Embarrassing TP2 problems
« Reply #8 on: December 23, 2005, 10:20:20 AM »
^That'll be the issue, yeah.
"We are the Gibberlings Three, as merry a band as you ever did see..." - Home of IE mods

<jcompton> Suggested plugs include "Click here so Compton doesn't ban me. http://www.pocketplane.net/ub"

I am unfortunately not often about these days so the best way to get hold of me is via email.

Offline Western Paladin

  • You're not fooling me, 'cause I can see, the way you shake and shiver.
  • Planewalker
  • *****
  • Posts: 145
  • Gender: Male
  • Jeepers!
    • Gibberlings Three
Re: Embarrassing TP2 problems
« Reply #9 on: December 23, 2005, 08:56:13 PM »
 :o I feel like such a dumbass.
"What was that? I couldn't hear you over the STREET JUSTICE!"
-- Stan Smith, American Dad!

Offline discharger12

  • Truth?
  • Planewalker
  • *****
  • Posts: 625
  • Gender: Male
  • k
Re: Embarrassing TP2 problems
« Reply #10 on: December 23, 2005, 09:11:34 PM »
On a side note, in case you don't already know, if you want to change a text file (and many other files, for that matter) just go to properties and where it says "Opens with <>", click change.

 

With Quick-Reply you can write a post when viewing a topic without loading a new page. You can still use bulletin board code and smileys as you would in a normal post.

Warning: this topic has not been posted in for at least 120 days.
Unless you're sure you want to reply, please consider starting a new topic.

Name: Email:
Verification:
Type the letters shown in the picture
Listen to the letters / Request another image
Type the letters shown in the picture:
What color is grass?:
What is the seventh word in this sentence?:
What is five minus two (use the full word)?: