Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Scriptname SKSEMap
- ; Insert a form by any type
- Function insertFormByForm(Form key, Form value) native
- Function insertFormByString(string key, Form value) native
- Function insertFormByNumber(float key, Form value) native
- ; Insert a string by any type
- Function insertStringByForm(Form key, string value) native
- Function insertStringByString(string key, string value) native
- Function insertStringByNumber(float key, string value) native
- ; Insert a number by any type
- Function insertNumberByForm(Form key, float value) native
- Function insertNumberByString(string key, float value) native
- Function insertNumberByNumber(float key, float value) native
- ; Return a form
- Form Function GetFormByForm(Form key) native
- Form Function GetFormByString(string key) native
- Form Function GetFormByNumber(float key) native
- ; Return a string
- string Function GetStringByForm(Form key) native
- string Function GetStringByString(string key) native
- string Function GetStringByNumber(float key) native
- ; Return a number
- float Function GetNumberByForm(Form key) native
- float Function GetNumberByString(string key) native
- float Function GetNumberByNumber(float key) native
- ; Remove a form by it's key
- Function RemoveFormByForm(Form key) native
- Function RemoveFormByString(string key) native
- Function RemoveFormByNumber(float key) native
- ; Remove a string by it's key
- Function RemoveStringByForm(Form key) native
- Function RemoveStringByString(string key) native
- Function RemoveStringByNumber(float key) native
- ; Remove a number by it's key
- Function RemoveNumberByForm(Form key) native
- Function RemoveNumberByString(string key) native
- Function RemoveNumberByNumber(float key) native
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement