1. Should every plugin auto load that function even if it isn't informed under PluginInit()?

    Just got the kits and give plugins update from Reneb and I saw errors pointing to values that should be readable from there, but since it wasn't loaded the functions didn't worked. Then, after inserting LoadDefaultConfig() inside PluginInit() everything was cool.
     
  2. Wulf

    Wulf Community Admin

    It's not automatically loaded, as that function is one plugins control. Not every plugin dev wants it under Init.
     
  3. Asked it because some config values under that function wasn't being read by the other functions of the plugin. Maybe a self:SaveConfig() under PluginInit() would solve that.
     
  4. Wulf

    Wulf Community Admin

    That's all up to the plugin dev. ;) Many have their own ways of handling the configs, like mine where it will automatically remove, replace, etc.