Search results

  1. Jakkee

    how to install pluton plugin on fougerite

    Fougerite is Legacy :) I think you're looking for http://forum.pluton-team.org/
  2. Jakkee

    Approved AdminPlus

    Jakkee updated AdminPlus with a new update entry: V 1.8.3 - TpAdmin Fix Read the rest of this update entry...
  3. Jakkee

    AdminPlus - V 1.8.3 - TpAdmin Fix

    Fixed tpadmin
  4. Jakkee

    Approved DonatorRank

    For the kits, I fixed cooldowns and I couldn't create the problem with vkit basic / advanced etc. I may of broke vtp/dtp in that version as well
  5. Jakkee

    Approved DonatorRank

    Test this, Has lots of fixes. Also removed Banning/Kicks I recommend using a banning plugin
  6. Jakkee

    Approved AdminPlus

    Jakkee updated AdminPlus with a new update entry: V 1.8.2 - Possible AdminTP fix Read the rest of this update entry...
  7. Jakkee

    AdminPlus - V 1.8.2 - Possible AdminTP fix

    Possibly fixed errors for AdminTP, Post any errors you get using this plugin
  8. Jakkee

    Approved DonatorRank

    DataStore's are returning None, I'll have to change to dictionary's. Thanks for the error + logs! I'm working over the weekend so most likely Monday I'll push for an update
  9. Jakkee

    I need edited resources

    Heres a version that should be working if anyone is following this thread
  10. Jakkee

    Help with python

    or a dictionary if you dont want to use DataStore PlayerList = {} def On_PlayerConnected(self, Player): self.PlayerList[Player.SteamID] = "First Time Spawn" def On_PlayerSpawned(self, Player): if self.PlayerList[Player.SteamID] is not None: del...
  11. Jakkee

    I need edited resources

    Plugin.Log("startingTotals", str(ResourceTarget) + " = " + str(ResourceTarget.startingTotal))
  12. Jakkee

    I need edited resources

    ResourceTarget.startingTotal doesn't seem to effect the total resources
  13. Jakkee

    Help with python

    def On_PlayerConnected(self, Player): DataStore.Add("FirstConnect", Player.SteamID, "True") def On_PlayerSpawned(self, Player): if DataStore.Get("FirstConnect", Player.SteamID) == "True": DataStore.Remove("FirstConnect", Player.SteamID) #Do stuff else...
  14. Jakkee

    Fougerite Official

    Kick that user and he/she can join again
  15. Jakkee

    Approved ItemController

    Errors?
  16. Jakkee

    I need edited resources

    Answer lies here: def check(self, arg): try: i = int(arg) if i is not None: return i else: return None except: return None Error: Error in plugin GatherPlus: Traceback (most recent call last)...
  17. Jakkee

    I need edited resources

    Had to do a fresh reinstall. Works now :p Before Both ResourceSpawn and ResourceSpawned were not doing anything. Anyway, I can not find why DataStore is returning None? Error in plugin GatherPlus: Traceback (most recent call last): File "<string>", line 278, in On_ResourceSpawn TypeError...
  18. Jakkee

    I need edited resources

    I originally tried On_ResourceSpawn then it was failing to callback, So I looked in the .dll and it said it was ResourcedSpawned
  19. Jakkee

    I need edited resources

    Wut Why is it ResourceSpawned in Fougerite hooks?
  20. Jakkee

    I need edited resources

    Well the plugins I have all work, Just not the hook ResourceSpawned()