2019-04-02 03:26 PM
Solved! Go to Solution.
2019-04-03 03:44 AM
req_zone_cat = ""
_bSuccess = LIBRARYGLOBAL ("My_LibraryGlobals", "my_glob_lib_variable", req_my_glob_lib_variable)
if _bSuccess > 0 then
my_object_variable = req_my_glob_lib_variable
else
zone_type = "default backup value"
endif
2019-04-03 03:42 AM
| AC22-28 AUS 3110 | Help Those Help You - Add a Signature |
| Self-taught, bend it till it breaks | Creating a Thread |
| Win11 | i9 10850K | 64GB | RX6600 | Win11 | R5 2600 | 16GB | GTX1660 |
2019-04-03 03:44 AM
req_zone_cat = ""
_bSuccess = LIBRARYGLOBAL ("My_LibraryGlobals", "my_glob_lib_variable", req_my_glob_lib_variable)
if _bSuccess > 0 then
my_object_variable = req_my_glob_lib_variable
else
zone_type = "default backup value"
endif
2019-04-03 03:19 PM
_bSuccess = LIBRARYGLOBAL ("My_LibraryGlobals", "my_glob_lib_variable", req_my_glob_lib_variable)
if _bSuccess > 0 then
my_object_variable = req_my_glob_lib_variable
else
my_object_variable = "default backup value"
endif
Used "my_object_variable" as desired