Advertisement
pressf880

prop.nut

Apr 3rd, 2025
440
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.99 KB | None | 0 0
  1. function SetProp(ent, prop, value, arr = null)
  2. {
  3.     switch(typeof(value))
  4.     {
  5.         case "integer":
  6.         {
  7.             if(arr) return NetProps.SetPropIntArray(ent, prop, value, arr)
  8.             return NetProps.SetPropInt(ent, prop, value)
  9.         }
  10.         case "float":
  11.         {
  12.             if(arr) return NetProps.SetPropFloatArray(ent, prop, value, arr)
  13.             return NetProps.SetPropFloat(ent, prop, value)
  14.         }
  15.         case "bool":
  16.         {
  17.             if(arr) return NetProps.SetPropBoolArray(ent, prop, value, arr)
  18.             return NetProps.SetPropBool(ent, prop, value)
  19.         }
  20.         case "string":
  21.         {
  22.             if(arr) return NetProps.SetPropStringArray(ent, prop, value, arr)
  23.             return NetProps.SetPropString(ent, prop, value)
  24.         }
  25.         case "instance":
  26.         {
  27.             if(arr) return NetProps.SetPropEntityArray(ent, prop, value, arr)
  28.             return NetProps.SetPropEntity(ent, prop, value)
  29.         }
  30.     }
  31. }
Tags: vscript CS:S
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement