Advertisement
expired6978

Untitled

Oct 1st, 2012
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. Scriptname SKSEMap
  2.  
  3. ; Insert a form by any type
  4. Function insertFormByForm(Form key, Form value) native
  5. Function insertFormByString(string key, Form value) native
  6. Function insertFormByNumber(float key, Form value) native
  7.  
  8. ; Insert a string by any type
  9. Function insertStringByForm(Form key, string value) native
  10. Function insertStringByString(string key, string value) native
  11. Function insertStringByNumber(float key, string value) native
  12.  
  13. ; Insert a number by any type
  14. Function insertNumberByForm(Form key, float value) native
  15. Function insertNumberByString(string key, float value) native
  16. Function insertNumberByNumber(float key, float value) native
  17.  
  18. ; Return a form
  19. Form Function GetFormByForm(Form key) native
  20. Form Function GetFormByString(string key) native
  21. Form Function GetFormByNumber(float key) native
  22.  
  23. ; Return a string
  24. string Function GetStringByForm(Form key) native
  25. string Function GetStringByString(string key) native
  26. string Function GetStringByNumber(float key) native
  27.  
  28. ; Return a number
  29. float Function GetNumberByForm(Form key) native
  30. float Function GetNumberByString(string key) native
  31. float Function GetNumberByNumber(float key) native
  32.  
  33. ; Remove a form by it's key
  34. Function RemoveFormByForm(Form key) native
  35. Function RemoveFormByString(string key) native
  36. Function RemoveFormByNumber(float key) native
  37.  
  38. ; Remove a string by it's key
  39. Function RemoveStringByForm(Form key) native
  40. Function RemoveStringByString(string key) native
  41. Function RemoveStringByNumber(float key) native
  42.  
  43. ; Remove a number by it's key
  44. Function RemoveNumberByForm(Form key) native
  45. Function RemoveNumberByString(string key) native
  46. Function RemoveNumberByNumber(float key) native
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement