You can just create a class in another .verse file like this:
utils := class():
CheckPlayerTeam():void=
# Your code
And to call your function anywhere, you need to call the class and the function in it:
utils{}.CheckPlayerTeam()
You can just create a class in another .verse file like this:
utils := class():
CheckPlayerTeam():void=
# Your code
And to call your function anywhere, you need to call the class and the function in it:
utils{}.CheckPlayerTeam()