Перейти к содержимому
View in the app

A better way to browse. Learn more.

Zloplay community

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

God Script [God Plugin] v0.1 BETA

Опубликовано:

This Is the Famous God Plugin (the most advanced administration plugin for steam) I've been Porting through to work with 4D1.

Notice that its still in BETA and has so many bugs.

Report them here.

Once again , this version is buggy , so don't take it personal.

 

 

List of commands:

New Commands:
!Get<.dspl name>now (ex. !getsdnow = loads Search and Destroy On Current Map)
!nextmap (ex. !nextmap = Shows what is coming on the next map)
!get1 , !get2 , !get3 (Loads Custom Gametypes SEE DSPL FILE NAMES)(also works instant (!get1now))

!get<.dspl name> ( ex. !gettdm = loads teamdeath match on next map rotate)
!map ( ex. !mapdome = loads map of dome)
!say  ( ex. !say hi = prints "hi" on console)
!kick [Playername] (reason) - Kicks a player with optional reason
!ban [Playername] - Bans the player permanently
!banc [clientnumber] - Same as ban but with clientnumber
!kickc [clientnumber] (reason) - Kicks a player with optional reason
!tmpban [playername] (reason) - Tempban a player, length is the time in 
sv_config.ini
!pm [Playername] [message] - Pm's the player with [message]
!ping (playername) - Displays the ping of (playername) or you is no playername 
is given
!maxping - Displays the player with the highest ping
!minping - Displays the player with the lowest ping
!pl (Playername) - Displays the players name, xuid, warnings, and 
clientnumber, or all players if no name is used
!y [Playername or all] [Message] - Displays message on the players hud
!warn [Playername] (reason) - Warns a player
!unwarn [Playername] (reason) - Removes a player's warning
!ver - Displays this plugin's version
!xuid - Displays your player XUID
!rcon [Command] - Executes [command] in the console
!resetconf - Resets the configuration to the defaults
!rel - Reloads all configs
!add [Groupname] [Playername] - Adds player to the admin group, 
groupname is case sensitive
!addword [Word] (word) (word) etc. - Adds the word(s) to the language filter
!res - Real Fast restart
!addimmune [Playername] - Makes the player immune to all kick, warn, of ban commands of this plugin
!reserved - Kicks the players with the highest ping that is in the usergroup
!admin - shows admins present on the server.
!mr - rotates the map for changing gametype

Featured Replies

Опубликовано:
Pw":1a6cwmm9]
Can you release the source?

 

check bonemind plugin in itsmods.com (80% of Code is same)

or use ref.... to see source

 

I could not find, but no problem, I just wanted to help fix the bugs

OzonE needs no help :D unless you're amazing at C#.

Опубликовано:
Pw":2zgj8ta7]
Can you release the source?

 

check bonemind plugin in itsmods.com (80% of Code is same)

or use ref.... to see source

 

I could not find, but no problem, I just wanted to help fix the bugs

OzonE needs no help :D unless you're amazing at C#.

 

if he wants to do alone no problem, but I love C#, C++ and I'm willing to help

Опубликовано:

This plugin always referenced to Nukem's Addon .

 

Then to worked all commands you need to use Nukem's Addon V1.204 (ITS COMPLETELY WORKED WITH THEM)

all config's are reading from @"plugins\serveradmin\...

just like that:

as you see its just Aliaser.cs source from this Plugin.

(for some reason maybe OzonE dont like i publish his Godplugin Source so sorry i just show you this simple one because i want to show you This plugin always referenced to Nukem's Addon)

 

 


using Addon;
using System;
using System.Collections.Generic;
using System.IO;

namespace ServerAdmin
{
   internal class Aliaser : CPlugin
   {
       private Dictionary aliasList = new Dictionary();

       public Aliaser()
       {
           this.readFile();
       }

       public string getAlias(string alias)
       {
           string str;
           if (this.aliasList.TryGetValue(alias, out str))
           {
               return str;
           }
           return alias;
       }

       private bool readFile()
       {
           try
           {
               using (StreamReader reader = new StreamReader(@"plugins\serveradmin\aliases"))
               {
                   string str;
                   while ((str = reader.ReadLine()) != null)
                   {
                       string[] strArray = str.Split(new char[] { '=' });
                       if (strArray.Length > 1)
                       {
                           str = str.Replace(strArray[0], "").Replace("=", "");
                           this.aliasList.Add(strArray[0].ToLower().Trim(), str.Trim());
                       }
                       else
                       {
                           base.ServerPrint("You have an error in the aliases file, ignoring line:" + str);
                       }
                   }
               }
               return true;
           }
           catch (Exception exception)
           {
               base.ServerPrint("Could not read file, rules will be empty");
               base.ServerPrint("Error: " + exception.Message);
               return false;
           }
       }
   }
}


Опубликовано:
This plugin always referenced to Nukem's Addon .

 

Then to worked all commands you need to use Nukem's Addon V1.204 (ITS COMPLETELY WORKED WITH THEM)

all config's are reading from @"plugins\serveradmin\...

just like that:

as you see its just Aliaser.cs source from this Plugin.

(for some reason maybe OzonE dont like i publish his Godplugin Source so sorry i just show you this simple one because i want to show you This plugin always referenced to Nukem's Addon)

 

 


using Addon;
using System;
using System.Collections.Generic;
using System.IO;

namespace ServerAdmin
{
   internal class Aliaser : CPlugin
   {
       private Dictionary aliasList = new Dictionary();

       public Aliaser()
       {
           this.readFile();
       }

       public string getAlias(string alias)
       {
           string str;
           if (this.aliasList.TryGetValue(alias, out str))
           {
               return str;
           }
           return alias;
       }

       private bool readFile()
       {
           try
           {
               using (StreamReader reader = new StreamReader(@"plugins\serveradmin\aliases"))
               {
                   string str;
                   while ((str = reader.ReadLine()) != null)
                   {
                       string[] strArray = str.Split(new char[] { '=' });
                       if (strArray.Length > 1)
                       {
                           str = str.Replace(strArray[0], "").Replace("=", "");
                           this.aliasList.Add(strArray[0].ToLower().Trim(), str.Trim());
                       }
                       else
                       {
                           base.ServerPrint("You have an error in the aliases file, ignoring line:" + str);
                       }
                   }
               }
               return true;
           }
           catch (Exception exception)
           {
               base.ServerPrint("Could not read file, rules will be empty");
               base.ServerPrint("Error: " + exception.Message);
               return false;
           }
       }
   }
}


That's from bonemind's released source code. Also if you had read his itsmods.com post it says that it was based off of it... bonemind released the source so he can do whatever he pleases with the code. As it was released and it was intentional by the creator (bonemind).

Опубликовано:
That's from bonemind's released source code. Also if you had read his itsmods.com post it says that it was based off of it... bonemind released the source so he can do whatever he pleases with the code. As it was released and it was intentional by the creator (bonemind).

>released source code

>actually ilspy/reflector'd stuff

  • 2 weeks later...
Опубликовано:

Disapproved.

Reason: no source, no credits

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Гость
Ответить в тему...

Сейчас на странице 0

  • Нет пользователей, просматривающих эту страницу

Важная информация

Используя этот сайт, вы соглашаетесь Условия использования.

Account

Navigation

Поиск

Поиск

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.