
Rust:IO Clans
Allows your players to form and manage clans with Rust:IO
Total Downloads: 43,652 - First Release: Mar 17, 2015 - Last Update: May 1, 2017
- 4.91489/5, 47 likes
-
-
Are there any plans to add an Alliance feature to this plugin to allow for multiple clans to band together ?
-
Any way yet to make all clan tags a certain color?
-
Is there a way for admins to see the descriptions of clans and list clans on the server? If not that would be helpful in determining the removal of clans.
-
How do I install/add it on my server?
[DOUBLEPOST=1451142796][/DOUBLEPOST]Oh, nevermind. -
hi, i have problem with Clans plugin,
I use vip account on my server, with vip TAG, and when i instal rustIO clans, all [vip] tag has deleted
can you help me for keep all vip tag with this plugin please? -
how do i make myself owner?
-
I have a problem with a long translation. If the text is too long, then plugin it does not display. The error log is not.
-
dcode pretty please try and port this to hurtworld, please!
-
Hey man, first of all great work on this plugin, second, wanted to request if you could add clan alliances, so ff protection on members of the same alliance and a chat for it. If you even played Guild Wars 1, its pretty much that.
-
Problem with API.
I write my plugin (csharp) with these strings:
Code:using System; using System.Globalization; using System.Collections.Generic; using Oxide.Core.Configuration; using Oxide.Core.Plugins; using System.Text; using Oxide.Core; ..... namespace Oxide.Plugins { [Info("test", "qqept", 0.1, ResourceId = 0)] [Description("test")] public class test: RustPlugin { [PluginReference] Plugin Clans; ..... [ChatCommand("nick")] private void cmdChatNick(BasePlayer player, string command, string[] args) { var nicka = ""; if (Clans.GetClanOf(player) == null) nicka = player.displayName.ToString(); else { nicka = player.displayName.ToString(); var CT = Clans.GetClanOf(player); nicka = nicka.Substring(CT.Length, nicka.Length); }; PrintToChat(player, nicka); } ...
[Oxide] 5:29 PM [Error] GetStore plugin failed to compile!
[Oxide] 5:29 PM [Error] GetStore.cs(266,21): error CS1061: Type `Oxide.Core.Plugins.Plugin' does not contain a definition for `GetClanOf' and no extension method `GetClanOf' of type `Oxide.Core.Plugins.Plugin' could be found. Are you missing reference?
266: var CT = Clans.GetClanOf(player);Last edited by a moderator: Jan 2, 2016 -
I just started my server so I don't know much, how can I allow anyone to use commands, I'm owner on my server but I can't use any of the clan commands.
-
is possible limit a clan to a certain number? e.x 10 members?
-
Where would the file be located will clans so that I can remove it after wipe.
-
Hola
Hello friends, I would like to translate the plugin to Spanish
What file should modify?
Thank you! -
-
-
Installed clans.
Command 'teleport' stopped working.
Uninstalled clans.
Command 'teleport' started to work again.
But i want to install clans ;(
Newest oxide. Besides clans using friendsapi, rustio, betterchat, playerdatabase, playerinformations, playermanager. -
Restrict a clan name (create) :
Code:string ClanBlacklist = args[1].ToString().ToLower(); if (ClanBlacklist == "admin" || ClanBlacklist == "modo" || ClanBlacklist == "vip") { sb.Append(_("error message ...............")); break; }
Last edited by a moderator: Jan 10, 2016