Перейти к содержимому
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.

Featured Replies

Опубликовано:
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

Опубликовано:
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

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

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

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

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.