I have been working for 20 minuts on this INCREDIBLY simple code snippet that isn't working...Ã, Any help would be appreciated 
CODE:
// script for room: First time player enters screen
string class;
GetGlobalString(17,class) ;Ã, /This should be the word Warrior
if (class == "Warrior")
{
display ("IT WORKED!");
}
Display("It didn't work... %s", class);
---------------------
Now, the thing doesn't work, as it skips right on through to the bottom line "It didn't work... %s", class line.
When that bottom line is run, it reads :
It didn't work... Warrior
So I know the Global string is being pulled out properly, but for some reason my IF statement isn't working.. ARGH!
I would greatly appreciate any help.
Thanks,
Bill Garrett
Ã,Â

CODE:
// script for room: First time player enters screen
string class;
GetGlobalString(17,class) ;Ã, /This should be the word Warrior
if (class == "Warrior")
{
display ("IT WORKED!");
}
Display("It didn't work... %s", class);
---------------------
Now, the thing doesn't work, as it skips right on through to the bottom line "It didn't work... %s", class line.
When that bottom line is run, it reads :
It didn't work... Warrior
So I know the Global string is being pulled out properly, but for some reason my IF statement isn't working.. ARGH!
I would greatly appreciate any help.
Thanks,
Bill Garrett
Ã,Â