Sounds like the plugin didn't load, I'll download Legacy and seeI tried v1.5.6.
Dtp, vtp, dkit and vkit don't work, I don't have errors in console, as if the code is broken.
Sounds like the plugin didn't load, I'll download Legacy and seeI tried v1.5.6.
Dtp, vtp, dkit and vkit don't work, I don't have errors in console, as if the code is broken.
Plugin description works, if I type /vkit, in game chat appears "Usage: /vkit [basic / advanced]" but if I try to use /vkit basic, nothing happens.Sounds like the plugin didn't load, I'll download Legacy and see
Line: 148 SETTINGS.clear()Plugin description works, if I type /vkit, in game chat appears "Usage: /vkit [basic / advanced]" but if I try to use /vkit basic, nothing happens.
Also with other commands is the same.
info, vadd, vdel etc.. works well.
I edited it.Line: 148 SETTINGS.clear()
needs to be PSettings.clear()
Thats a quick fix, I'll do a update later
When I was editing the code (Changing that one line) I decided to finally change from DataStore to Dictionary. Dictionary will hold all the temp items, E.G Kits, TP locations, User Perms etc.I edited it.
Now vtp, dtp and vkit basic work well, but I have always same problems with vkit advanced, dkit basic and dkit advanced (I didn't try mtp and mkit).
Also tags and maxhomes settings don't work, and when I type /dtp only one location appears (Small Rad).
Read the rest of this update entry...Changed to Dictionary, Getting a users rank/kit/permission is now a LOT faster!
[4/4/2016 12:11:07 PM] [Console] DonatorRank: Failed to add joining user's info into DataStore
Read the rest of this update entry...Fix for error on user connect, Other little changes/Improvements
Left out some code in 1.6 for Vkit Advanced / Dkit Basic and Dkit Advanced, Now fixed.Mm now nothing seems to work, also vkit basic and vtp/dtp.
Another thing, when players join in the server I have this:
Code:[4/4/2016 12:11:07 PM] [Console] DonatorRank: Failed to add joining user's info into DataStore
Read the rest of this update entry...Updated checking a users permission to use commands, More checks.
Read the rest of this update entry...Added home Teleport delay and Cooldown per rank, So VIP's can have a delay of 0 seconds and cooldown of 0 seconds if you really wanted to.
Read the rest of this update entry...Fixes, Nothing new.
Read the rest of this update entry...Uploaded wrong file before
# -*- coding: utf-8 -*-
__title__ = 'DonatorFlush'
__author__ = 'tarynkelley'
__version__ = '0.1'
import clr
clr.AddReferenceByPartialName("Fougerite")
import System
import Fougerite
class DonatorFlush:
def On_PluginInit(self):
Util.ConsoleLog(__title__ + " by " + __author__ + " Version: " + __version__ + " loaded.", False)
def On_Command(self, Player, cmd, args):
if cmd == "donatorflush":
if Player.Admin:
DataStore.Flush("LVL1VKitCooldown")
DataStore.Flush("LVL2VKitCooldown")
DataStore.Flush("LVL1DKitCooldown")
DataStore.Flush("LVL2DKitCooldown")
DataStore.Flush("VTPCooldown")
DataStore.Flush("DTPCooldown")
DataStore.Flush("DonatorRank")
Player.MessageFrom("DonatorFlush", "DonatorRank CooldownDB flushed!")
else:
Player.MessageFrom("DonatorFlush", "No permissions")