Fix for Titanms

Newbie Spellweaver
Joined
Feb 18, 2007
Messages
17
Reaction score
0
Well It seems that people were having probs with building titanms :P.
So! Here is a patch for the lazy people ^^.

Also, when you build you'll get some errors about angelscriptd.lib.
After the build is done, go to ..src/titanms/debug and find vc90.pdb.
Copy it to ..src/titanms and delete your debug folder, then build again.
You shouldn't get any errors. (No idea if it actually effects anything but oh well XD)
 

Attachments

Re: [Release]Fix for Titanms

Heres a in game fix.
Bugs I found so far

GM command for "!maxmp":

File: ChatHandler.cpp

Find
Code:
		else if(command == "maxmp"){
			int maxmp = strval(msg.substr(msg.find(" ")));
			player->setMaxMP(maxmp);
		}


Replace with
Code:
		else if(command == "maxmp"){
			int maxmp = strval(msg.substr(msg.find(" ")));
			player->setBaseMaxMP(maxmp);
			player->setMaxMP(maxmp);
		}
 
Back