Admin Plug from Oxide Admin <-> Player (God Mode)

Revezunds

Moderator
Moderator
Dec 1, 2017
155
63
28
Hello Devs,

I want to ask and request if it is possible to have this admin plugin from Oxide in our Fougerite RustBuster servers. I know we already have an Admin plugin but is it possible if someone can develop this plugin, all codes and details are already in the link provided below

Admin <-> Player (God Mode)--> https://oxidemod.org/plugins/admin-player-god-mode.523/

the link will take you to the Oxide page of the plugin just asking as it is more convenient and the plugin is something i have been using since very long time in AcW cracked server and our all admins and mods are used to it + community also there are few features which are very helpful and make Mod perfectly different to Admins.
Looking forward to hearing a positive reply

Regards
 

ice cold

Active Member
Trusted Member
Member
Oct 24, 2016
606
871
43
Canada
Hello Devs,

I want to ask and request if it is possible to have this admin plugin from Oxide in our Fougerite RustBuster servers. I know we already have an Admin plugin but is it possible if someone can develop this plugin, all codes and details are already in the link provided below

Admin <-> Player (God Mode)--> https://oxidemod.org/plugins/admin-player-god-mode.523/

the link will take you to the Oxide page of the plugin just asking as it is more convenient and the plugin is something i have been using since very long time in AcW cracked server and our all admins and mods are used to it + community also there are few features which are very helpful and make Mod perfectly different to Admins.
Looking forward to hearing a positive reply

Regards
i wil code it
 
  • Friendly
Reactions: Revezunds

ice cold

Active Member
Trusted Member
Member
Oct 24, 2016
606
871
43
Canada
Hello Devs,

I want to ask and request if it is possible to have this admin plugin from Oxide in our Fougerite RustBuster servers. I know we already have an Admin plugin but is it possible if someone can develop this plugin, all codes and details are already in the link provided below

Admin <-> Player (God Mode)--> https://oxidemod.org/plugins/admin-player-god-mode.523/

the link will take you to the Oxide page of the plugin just asking as it is more convenient and the plugin is something i have been using since very long time in AcW cracked server and our all admins and mods are used to it + community also there are few features which are very helpful and make Mod perfectly different to Admins.
Looking forward to hearing a positive reply

Regards
Python:
__title__ = 'AdminMode'
__author__ = 'ice cold'
__version__ = '1.0'

import clr
clr.AddReferenceByPartialName("Fougerite")
import Fougerite

sysname = "AdminOn"
green = "[color green]"
red = "[color red]"

class AdminMode:
    def On_Command(self, Player, cmd, args):
        if cmd == "adminon":
            if Player.Admin or Player.Moderator:
                self.recordInventory(Player)
                self.giveadmintools(Player)
                Player.Notice("Admin mode on")
            else:
                Player.Message("You dont have permissions to use this command")
        elif cmd == "adminoff":
              if Player.Admin or Player.Moderator:
                  Player.Notice("Admin mode off")
                  self.returnInventory(Player)
              else:
                  Player.Message("You dont have permissions to use this command")

    def giveadmintools(self, Player):
        if Player.Admin or Player.Moderator:
            Player.Inventory.AddItem("Uber Hunting Bow", 1)
            Player.Inventory.AddItem("Uber Hatchet", 1)
            Player.Inventory.AddItem("Arrow", 10)
            Player.Inventory.AddItem("Large Medkit", 40)
            Player.Inventory.AddItemTo("Invisible Helmet", 36, 1)
            Player.Inventory.AddItemTo("Invisible Vest", 37, 1)
            Player.Inventory.AddItemTo("Invisible Pants", 38, 1)
            Player.Inventory.AddItemTo("Invisible Boots", 39, 1)

    #God bless dretax for this code below

    def recordInventory(self, Player):
        Inventory = []
        id = Player.SteamID
        for Item in Player.Inventory.Items:
            if Item and Item.Name:
                myitem = {'name': Item.Name, 'quantity': Item.Quantity, 'slot': Item.Slot}
                Inventory.append(myitem)
        for Item in Player.Inventory.ArmorItems:
            if Item and Item.Name:
                myitem = {'name': Item.Name, 'quantity': Item.Quantity, 'slot': Item.Slot}
                Inventory.append(myitem)
        for Item in Player.Inventory.BarItems:
            if Item and Item.Name:
                myitem = {'name': Item.Name, 'quantity': Item.Quantity, 'slot': Item.Slot}
                Inventory.append(myitem)

        DataStore.Add("readdinv", id, Inventory)
        DataStore.Save()
        Player.Inventory.ClearAll()

    def returnInventory(self, Player):
        id = Player.SteamID
        if DataStore.ContainsKey("readdinv", id):
            Inventory = DataStore.Get("readdinv", id)
            Player.Inventory.ClearAll()
            for dictionary in Inventory:
                if dictionary['name'] is not None:
                    Player.Inventory.AddItemTo(dictionary['name'], dictionary['slot'], dictionary['quantity'])
                else:
                    Player.MessageFrom(sysname, red + "No dictionary found in the for cycle?!")
            Player.MessageFrom(sysname, green + "Your have received your original inventory")
            DataStore.Remove("readdinv", id)
        else:
            Player.MessageFrom(sysname, red + "No Items of your last inventory found!")
 
  • Like
Reactions: Revezunds

Revezunds

Moderator
Moderator
Dec 1, 2017
155
63
28
Is it exactly same plugin? and will work exactly same? will you upload it to plugin section too?
 

salva

Friendly self-taught developer
Administrator
Jan 31, 2016
576
609
63
Hello Devs,

I want to ask and request if it is possible to have this admin plugin from Oxide in our Fougerite RustBuster servers. I know we already have an Admin plugin but is it possible if someone can develop this plugin, all codes and details are already in the link provided below

Admin <-> Player (God Mode)--> https://oxidemod.org/plugins/admin-player-god-mode.523/

the link will take you to the Oxide page of the plugin just asking as it is more convenient and the plugin is something i have been using since very long time in AcW cracked server and our all admins and mods are used to it + community also there are few features which are very helpful and make Mod perfectly different to Admins.
Looking forward to hearing a positive reply

Regards
What about ???? http://fougerite.com/resources/adminplus.27/
 

ice cold

Active Member
Trusted Member
Member
Oct 24, 2016
606
871
43
Canada
Hello Devs,

I want to ask and request if it is possible to have this admin plugin from Oxide in our Fougerite RustBuster servers. I know we already have an Admin plugin but is it possible if someone can develop this plugin, all codes and details are already in the link provided below

Admin <-> Player (God Mode)--> https://oxidemod.org/plugins/admin-player-god-mode.523/

the link will take you to the Oxide page of the plugin just asking as it is more convenient and the plugin is something i have been using since very long time in AcW cracked server and our all admins and mods are used to it + community also there are few features which are very helpful and make Mod perfectly different to Admins.
Looking forward to hearing a positive reply

Regards
You want anymore commands?
 

Revezunds

Moderator
Moderator
Dec 1, 2017
155
63
28
Does it works??
No can you send me folder with plugin? do I just need to add the .py file in Py plugin dir or something else as I tried but it didn't work
I made a .py file and copy pasted your codes and made a folder in Server Py plugin directory and uploaded it but didn't work, am I doing or missing something more?
Also it is itself a full admin tool which i use for my cracked server. and it is one of best out there as also easy to give access and use and free of any bugs. so will it work fully without admin plus cz if i will use this i will remove admin plus
few cmds are
/admin
/s -spirit mode <not in admin plus>
also, you do not loose armour and also you do not have to do that duty on-off thing. if you are an admin you can use when you want without telling all by duty on off
 
Last edited:

ice cold

Active Member
Trusted Member
Member
Oct 24, 2016
606
871
43
Canada
No can you send me folder with plugin? do I just need to add the .py file in Py plugin dir or something else as I tried but it didn't work
I made a .py file and copy pasted your codes and made a folder in Server Py plugin directory and uploaded it but didn't work, am I doing or missing something more?
Also it is itself a full admin tool which i use for my cracked server. and it is one of best out there as also easy to give access and use and free of any bugs. so will it work fully without admin plus cz if i will use this i will remove admin plus
few cmds are
/admin
/s -spirit mode <not in admin plus>
also, you do not loose armour and also you do not have to do that duty on-off thing. if you are an admin you can use when you want without telling all by duty on off
Well i coded an Plugin called AdminExtended > https://github.com/icecolderino/fougerite-plugins/blob/master/AdminExtended.py
 
  • Informative
Reactions: Revezunds

Revezunds

Moderator
Moderator
Dec 1, 2017
155
63
28
Yes now atm i am using the same plugin you quoted, but i was keen to know if we can develop exactly same plugin which in oxide forum but it is in .lua file format. i have been using this same plugin on my cracked server and it is quite convenient and accommodating to use.

My question is just that can we replicate same exactly same plugin for our RB servers, no new cmds no new additions nothing new feature just same as it is can we have in python formate or java ?
 

ice cold

Active Member
Trusted Member
Member
Oct 24, 2016
606
871
43
Canada
Yes now atm i am using the same plugin you quoted, but i was keen to know if we can develop exactly same plugin which in oxide forum but it is in .lua file format. i have been using this same plugin on my cracked server and it is quite convenient and accommodating to use.

My question is just that can we replicate same exactly same plugin for our RB servers, no new cmds no new additions nothing new feature just same as it is can we have in python formate or java ?
well my adminmode has that
 
  • Like
Reactions: Revezunds