I need to do this for remove a Timed permission ?
TimedPermissions
Moved
Total Downloads: 2,968 - First Release: May 20, 2016 - Last Update: Apr 7, 2017
- 5/5, 22 likes
-
Yes, I would suggest open the file TimedPermissions.json) with notepad++ so you can see which lines are together and remove them all at the same time. If it is the last lines of the file don't forget to remove the , after the }
When the server is on reload the plugin with /reload TimedPermissions -
Dear Lazer, is it possible to add grantperm group command?
I need to grant permission to default group.
Is there another way to give timed permission to default group -
The must have for this plugin is a command to reduce time and one to delete
Ps: pinfo don't work on consolecommand -
-
doesn't matter the registered message is Player Info and the call is Player info
@LaserHydra you will need to change it to your next update line 413 -
I use this plugin to grant players VIP for certain duration. The problem is that players can't tell how long their permissions last. Can you please make it so that players can use /pinfo provided they have permission? (like timedpermission.pinfo)
-
hello. Timed permission
-
Code:[Command("myinfo")] void cmdMyInfo(IPlayer player, string cmd, string[] args) { var target = player; if (target != null) { if (Player.GetOrCreate(target) == null) _players.Add(new Player(target)); Player pl = Player.Get(target); if (pl == null) player.Reply(GetMsg("Player Has No Info")); else { string msg = GetMsg("Player Info"); msg = msg.Replace("{player}", $"{pl.name} ({pl.steamID})"); msg = msg.Replace("{groups}", string.Join(", ", (from g in pl.groups select $"{g.@group} until {g.expireDate}").ToArray())); msg = msg.Replace("{permissions}", string.Join(", ", (from p in pl.permissions select $"{p.permission} until {p.expireDate}").ToArray())); player.Reply(msg); } } }
-
that seems to work. thanks. wish it were in the official release. cheers
-
Anyone know why plugin adds users to wrong group?
Code:[Info] [DonationClaim] Covalence.HurtworldPlayer[7656xxxx, xxxxx] has claimed donation package svip [Info] [Timed Permissions] ----> unknown (7656xxxxx) - Added to Group: vip for 29.23:59:59.9266390
Code:"Packages": { "vip": [ "addgroup {0} vip 30d" ], "svip": [ "addgroup {0} svip 30d" ], }
Fixed. Changing order of packages fixes the problem :OLast edited by a moderator: Mar 24, 2017 -
-
Edit:
Fixed. Changing order of packages fixes the problem :O -
-
LaserHydra updated Timed Permissions with a new update entry:
1.3.0
-
nice
-
If the player adds a privilege for 30 days, and the privilege has already been added earlier, then the time will be stacked (60 days minus past time)?
-
-
-
[DOUBLEPOST=1490537881][/DOUBLEPOST]Fix addgroup please.