• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

TLO change (1 Viewer)

cmwsr

New member
Joined
Oct 24, 2005
RedCents
11¢
I had the post bookmarked for fixing the TLO error on RG. I did a search and could not find it here. I would appreciate getting the info again please.
 
I'm not sure the exact location off the top of my head, but if you search in visual studio through the whole solution you can find it fairly quickly. Just search for "string" without quotes and it should pop up for you.
 
Open up EQData.cpp in notepad.

Change:
Rich (BB code):
TLO(dataString)
{
	WriteChatf("Due to complete misuse of the String Top-Level Object, it has been removed.");
	return false;
	/*
	if (!ISINDEX())
		return false;
	strcpy(DataTypeTemp,szIndex);
	Ret.Ptr=&DataTypeTemp[0];
	Ret.Type=pStringType;
	return true;
	/**/
}

To:
Rich (BB code):
TLO(dataString)
{
	if (!ISINDEX())
		return false;
	strcpy(DataTypeTemp,szIndex);
	Ret.Ptr=&DataTypeTemp[0];
	Ret.Type=pStringType;
	return true;
}

Thanks to Cade for making This Thread which is how I figured it out.
 
TLO change

Users who are viewing this thread

Back
Top