Quote:
Originally Posted by noobie
well, when you have core files, it is really not necassary to use such a thing but here is what you can do:
Code:
Type mobileType = Type.GetType("Server.Mobile");
FieldInfo walkFoot = mobileType.GetField("m_WalkFoot", BindingFlags.NonPublic);
walkFoot.SetValue(null, newVal);
|
wow, doesnt that defeat the purpose of private :/