Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function SetProp(ent, prop, value, arr = null)
- {
- switch(typeof(value))
- {
- case "integer":
- {
- if(arr) return NetProps.SetPropIntArray(ent, prop, value, arr)
- return NetProps.SetPropInt(ent, prop, value)
- }
- case "float":
- {
- if(arr) return NetProps.SetPropFloatArray(ent, prop, value, arr)
- return NetProps.SetPropFloat(ent, prop, value)
- }
- case "bool":
- {
- if(arr) return NetProps.SetPropBoolArray(ent, prop, value, arr)
- return NetProps.SetPropBool(ent, prop, value)
- }
- case "string":
- {
- if(arr) return NetProps.SetPropStringArray(ent, prop, value, arr)
- return NetProps.SetPropString(ent, prop, value)
- }
- case "instance":
- {
- if(arr) return NetProps.SetPropEntityArray(ent, prop, value, arr)
- return NetProps.SetPropEntity(ent, prop, value)
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement