What is the difference between using the "Call" function and simply running your function in the script?
For example..
Code:
Func _something()
;Does some stuff here
;more stuff, more stuff...
EndFunc
Call("_something") ;<--- execute "_something" function.
_something() ;<-- or you can use this way instead.






