View Single Post
Old 09-05-2004, 04:44 PM   #13 (permalink)
raisor
Master of Insanity
 
raisor's Avatar
 
Join Date: Sep 2004
Location: Mesa, Az
Age: 32
Posts: 220
Send a message via ICQ to raisor Send a message via AIM to raisor Send a message via MSN to raisor Send a message via Yahoo to raisor
Default

Quote:
Originally Posted by ssalter
Now it would be nice if something like this could be the default backpack. I hate the weight restrictions and if a new player could start off with a backpack that would hold up to 500 items with about a 75% weight reduction, that would be cool. I suppose it would be simpler though to figure out a way to change the maxweight that a character can carry, regardless of their strength.
*** DISCLAIMER: Not tested due to being at work! ***
I believe that all you would have to do is modify this code
Code:
		public static int GetMaxWeight( Mobile m )

		{

			return 40 + (int)(3.5 * m.Str);

		}
in the Scripts/Misc/WeightOverloading.cs file. At least that is what it looks like to me.

Thanks,
Tom Sapp
raisor is offline   Reply With Quote