🟪sam.Util.is_valid_gamemode
Description
Check if gamemode exists or not.
Aguments
- string gamemode_name
Returns
Example
print(sam.Util.is_valid_gamemode("sandbox"))
-- output
true
print(sam.Util.is_valid_gamemode("sAnDbOx"))
-- output
true
print(sam.Util.is_valid_gamemode("meow meow me"))
-- output
false
Last updated
Was this helpful?