SharpMod.BufferInfo.Set C# (CSharp) Method

Set() public method

Sets a value for a key in the infobuffer
public Set ( string key, string val ) : void
key string /// The key ///
val string /// A value ///
return void
        public void Set(string key, string val)
        {
            MetaModEngine.engineFunctions.SetServerKeyValue(MetaModEngine.engineFunctions.GetInfoKeyBuffer(Pointer), key, val);
        }