1. I was just wondering how I would go about chaining methods together?

    For example I'd like to have a flow like below:

    Code:
    OnPlayerConnected() {
        OnPlayerWake() {
            Puts("Player logged in and is now awake.");
        }
    }
    Thanks in advance,

    T.
     
  2. Wulf

    Wulf Community Admin

    Why would you need to do something like that? A hook (method) is called when something calls it, there'd be no reason to nest (chain) them together.