EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Archive::Development (https://www.eqemulator.org/forums/forumdisplay.php?f=621)
-   -   New commands (https://www.eqemulator.org/forums/showthread.php?t=1347)

kryo 04-21-2002 02:34 PM

New commands
 
I've been attempting for the last few hours to add three new commands to the EMU, #findclass, #findrace and #findskill, for easy reference. I'm brand new to VCC, so I was completely clueless with how to start. I wrote the code:

void Client:;FindRace(char* search_criteria)
{
char rCriteria[255];
char raceline[255];
char* rdest

strcpy(rCriteria, search_criteria);
strupr(rCriteria);

ifstream input_file("races.txt");

while (! input_file.eof())
{
input_file >> raceline;
strupr(raceline);

rdest = strstr(raceline, rCriteria);
if (rdest != NULL) {
Message(0, " %r", raceline)
}
}
}

Think it would work? I'm really not sure how to compile or anything - I'm used to VB. Any help would be appreciated.

Hmm 04-21-2002 04:08 PM

cool hope it works. i made that suggest some time ago.


All times are GMT -4. The time now is 05:38 PM.

Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.