Coolboy263 Posted June 15, 2020 Posted June 15, 2020 (edited) I want to make my script detect if there a saved item on game guardian saved list without getting error how? Hope anyone help me with some small lines of code or anything Edited June 15, 2020 by Coolboy263
0 Administrators Enyby Posted June 15, 2020 Administrators Posted June 15, 2020 Read API help. [added 0 minutes later] https://gameguardian.net/help/ 1
0 Coolboy263 Posted June 15, 2020 Author Posted June 15, 2020 Nothing helped me please say to me where i need to read in help page or type some code i really need it to my script [added 3 minutes later] 3 hours ago, Enyby said: Read API help. [added 0 minutes later] https://gameguardian.net/help/ Nothing helped me please say to me where i need to read in help page or type some code i really need it to my script
0 Coolboy263 Posted June 15, 2020 Author Posted June 15, 2020 I want to make my script detect if there a saved item on game guardian saved list without getting error how? Hope anyone help me with some small lines of code or anything Nothing in help page helped me
0 MonkeySAN Posted June 15, 2020 Posted June 15, 2020 can show me how you write it in the script that get you error?
0 Coolboy263 Posted June 15, 2020 Author Posted June 15, 2020 19 minutes ago, MonkeySAN said: can show me how you write it in the script that get you error? I tryed something like F = gg.getListItems() If f[1].address == nil then print('hi') end Also this didt work If gg.getListItems == nil then print('hi') end
0 MonkeySAN Posted June 15, 2020 Posted June 15, 2020 F = gg.getListItems() <-- why use big F here... If f[1].address <-- but call small f here == nil then print('hi') end -- use same big/small for both
0 Coolboy263 Posted June 15, 2020 Author Posted June 15, 2020 (edited) 5 minutes ago, MonkeySAN said: F = gg.getListItems() <-- why use big F here... If f[1].address <-- but call small f here == nil then print('hi') end -- use same big/small for both If i use small F or big f nothing changes the error is not F or f This lines of code is not working i tryed to do all things i get error or it dont work Also if dont know this lines of code will give you error if there is no saved item Edited June 15, 2020 by Coolboy263
0 El_dorado Posted June 16, 2020 Posted June 16, 2020 6 hours ago, Coolboy263 said: If i use small F or big f nothing changes the error is not F or f This lines of code is not working i tryed to do all things i get error or it dont work Also if dont know this lines of code will give you error if there is no saved item Can you send the picture of the error it gives? 1
0 Coolboy263 Posted June 16, 2020 Author Posted June 16, 2020 If i type this d = getListItems if d[1] == nil then print('hi') end Or if d[1].address == nil rhen print('hi') end I get this error message
0 CmP Posted June 16, 2020 Posted June 16, 2020 Just check if table returned by "getListItems" function contains any elements. local t = gg.getListItems() if #t == 0 then print('Saved list is empty') else print('Saved list is not empty') end 2
Question
Coolboy263
I want to make my script detect if there a saved item on game guardian saved list without getting error how?
Hope anyone help me with some small lines of code or anything
Edited by Coolboy26310 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now