[MISC] ScrollingMenuSign - scrollable command menus with many view types [BukkitDev]

Discussion in 'Archived: Plugin Releases' started by desht, May 24, 2011.

  1. Offline

    desht

    ScrollingMenuSign - scrollable command menus
    Note: ScrollingMenuSign is now on dev.bukkit.org:

    All documentation for the plugin can now be found there. General discussion for the plugin is fine here, but please use dev.bukkit.org tickets for problem reports.

    ScrollingMenuSign lets you attach a scrollable command menu to any sign or map and add menu items to it. Right-click the sign to scroll the list of items, left-click it to select an item and execute its associated command. The inspiration for this plugin was the large number of Minecart Mania station names I (and others) have to remember and type in.



    Some possible uses:
    • A menu of station setting commands for Minecart Mania
    • Newbie user guide menus
    • Warp menus for your favourite teleportation plugin
    • A shop menu - buy/sell/swap items & credits
    • Controlled access to commands that users can't normally run
    Links:
    Changelog

    See the Changelog on dev.bukkit.org
     
    HWei, bluehasia, elmoo32 and 6 others like this.
  2. Offline

    TheP3

    So, I Love this plugin, however, I would like to suggest you add something. Make the Minecraft username into a StringBuilder (A type of var in Java, less memory foot print). If I set the command to the sign, for example, /kick +UserName+. I would kick myself from Minecraft server. "+UserName+" = "The UserName that activated the command from the sign" Please add
     
  3. Offline

    desht

    As far as I can see, ChestShop doesn't expose any kind of API, so I don't think there's any way to hook SMS into it.

    I know what StringBuilder is for :)

    Anyhow, what you're looking for is already possible, as long as you're using CommandSigns too. The syntax you need for the command is /kick <NAME>.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 16, 2016
  4. Offline

    TheP3

    I get "No player matched query." I typed /sms add TypeOfPlayer Griefet|/kick <NAME> Griefer...-_- .
     
  5. Offline

    desht

    And you're definitely using CommandSigns?
     
  6. Offline

    TheP3

    No... lol Forgot to /reload
     
  7. Offline

    maxim_christian

    Hello, I saw a video once using this plugin, with a sign the user selected a station were to go, does anyone have an idea how he did that?
     
  8. Offline

    Phant0mX

  9. Offline

    desht

    Interesting to know, thanks. I have been considering where to take the CommandSigns support in SMS, given that CS 0.9 is getting quite out of date, and @Fluff has disappeared.

    I see the new version supports only PermissionsBukkit, which is not a bad thing in itself, but I am mindful of preserving some level of backwards compatibility.

    I'll see if I can find out what sort of API support etc. the new version has. Initial inspection indicates that it's a complete rewrite and currently missing many features that v0.9 had, so not suitable for use right now in conjunction with SMS.
     
  10. Offline

    IIE16_Yoshi

    So, I came to this plugins from BOSEconomy via CommandSigns and was wondering if anyone knew how to configure a sign to give or take items and adjust the user's balance accordingly? I was hoping to make an exchange center for common materials like iron,cobble, diamonds and the like where everything can be converted into a common currency to use to buy other goodies
     
  11. Offline

    Fragstuff

    Is it normal, that when you have a straight number of lines on sign, you can't select every of them. Only every second line. But when you have an uneven number of lines, you can select each of them!?!?!!?
     
  12. Offline

    desht

    As long as you also have CommandSigns installed, you can do something like this:
    Code:
    /sms add mymenu Iron->Gold|$;42,1;41,-1
    
    That example will take 1 iron block (id 42) away, and give you 1 gold block (id 41).

    You can also use item id 0 to represent economy credits, assuming you have an economy plugin installed.

    No, that sounds very strange - not heard of that one before. Can you send me a copy of the saved menu file (in plugins/ScrollingMenuSigns/data/menus/name.yml where name is the name of the menu) ?

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 16, 2016
  13. Offline

    Fragstuff

    SO I create a new sign today....and now it works....yesterday...everytime it doesnt work. also after a server start and stop....but today everything is Fine :) :) :)....but under menus/... i got no files....but i already placed signs in the game ?!?!
     
  14. Offline

    desht

    Which version of SMS are you using?
     
  15. Offline

    desht

    New release:
    ScrollingMenuSign v0.6 (12 Sep 2011)

    • Significant internal rewrite - structure is much more MVC-based, allowing more flexibility in what views can be created on a menu. Which leads to...
    • Map views! Yes, maps can now be used to display and interact with SMS menus! See the docs ("Maps") for much more information.
    • Also added new "/sms givemap" command, making it easy to get one or more maps of a specific ID. Again see the "Maps" documentation for more information.
    • The built-in SMS command parser is now much more powerful, and is intended to ultimately replace the CommandSigns integration. The SMS command parser is mostly compatible with CommandSigns, so migration should be reasonably painless. However, it should be considered experimental for now, and the CommandSigns integration is still supported for now. This has been done because CommandSigns now appears to be an inactive plugin (not updated in a couple of months). See the docs ("Command Parsing") for much more information.
    • Menus may now have a default command. This command is used if an item is added with no command string. Not so useful on its own, but the default command can include a "<LABEL>" tag, which is replaced with the label of the menu item being executed. This may be useful for e.g. menus of warp points.
    • Syntax for the "/sms add" command has been cleaned up. Now possible to use a quoted syntax, e.g./sms add mymenu "My Command" "/do my command". No more need for the confusing field separator (which is still supported for now, but deprecated and will give a warning if used).
    • It is now possible to delete menu items which contain spaces by name - just quote the menu item, e.g./sms remove mymenu "My Command"
    • API updated. Some methods are deprecated now (mainly any SMSMenu methods which dealt with signs & locations - this is now handled in the new public SMSView class and its subclasses). Also, macros can now be manipulated via the API.
    Note that all documentation is now hosted on http://dev.bukkit.org/server-mods/scrollingmenusign/. New features are documented there (see in particular "Using Map Views" and "Command Parser").

    And a quick 0.6.1 release:
    ScrollingMenuSign v0.6.1 (12 Sep 2011)
    • Command parser bugfixes. Command terminator now works properly.
    • Command parser: added \\ command prefix to have the string whispered to the player (like CommandSigns)
    • Bug fixes in map & sign view classes - prevent NPE's when maps or signs can't be found.
    • Fixed up some missing permission nodes in plugin.yml

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 16, 2016
  16. Offline

    Monkey_nuts

    I get this error every time it says it downloads the data library thing then it needs a reboot but when I do it just says the same thing :/ i have also tried stopping and starting the server and that didn't work either
     
  17. Offline

    desht

    Can you post your server startup log?

    Also, can you check that Register.jar is actually present in your bukkit/lib folder? Sounds like it may have failed to download.
     
  18. Offline

    Monkey_nuts

    Code:
    2011-09-17 11:58:43 [INFO] Starting minecraft server version Beta 1.7.3
    2011-09-17 11:58:43 [INFO] Loading properties
    2011-09-17 11:58:43 [INFO] Starting Minecraft server on *:25565
    2011-09-17 11:58:43 [INFO] This server is running Craftbukkit version git-Bukkit-0.0.0-945-g73697a4-b1000jnks (MC: 1.7.3)
    2011-09-17 11:58:43 [INFO] DataSourcePool [MinecartManiaCore] autoCommit[false] transIsolation[SERIALIZABLE] min[2] max[20]
    2011-09-17 11:58:44 [INFO] SubClassFactory parent ClassLoader [org.bukkit.plugin.java.PluginClassLoader]
    2011-09-17 11:58:44 [INFO] Entities enhanced[0] subclassed[2]
    2011-09-17 11:58:44 [INFO] DataSourcePool [MinecartManiaSignCommands] autoCommit[false] transIsolation[SERIALIZABLE] min[2] max[20]
    2011-09-17 11:58:44 [INFO] SubClassFactory parent ClassLoader [org.bukkit.plugin.java.PluginClassLoader]
    2011-09-17 11:58:44 [INFO] Entities enhanced[0] subclassed[2]
    2011-09-17 11:58:45 [INFO] Lottery version 0.5.5 is enabled
    2011-09-17 11:58:45 [INFO] [Permissions] (Yeti) was initialized.
    2011-09-17 11:58:45 [INFO] [Permissions] version [3.1.6] (Yeti)  loaded
    2011-09-17 11:58:45 [INFO] Preparing level "World"
    2011-09-17 11:58:46 [INFO] Preparing start region for level 0 (Seed: -892536533442353231)
    2011-09-17 11:58:47 [INFO] Preparing start region for level 1 (Seed: -892536533442353231)
    2011-09-17 11:58:47 [INFO] Preparing spawn area: 0%
    2011-09-17 11:58:48 [INFO] [AutoSave] Loading config file
    2011-09-17 11:58:48 [INFO] [AutoSave] Version 2.0.1 is enabled: 9331caed-cce0-40c1-8d3c-6650daf6f24c
    2011-09-17 11:58:48 [INFO] [AutoSave][Permission] Custom Permissions "Local Permissions" found: Loaded
    2011-09-17 11:58:48 [INFO] [AutoSave][Permission] PermissionsEx not found.
    2011-09-17 11:58:48 [INFO] [AutoSave][Permission] Permissions (Phoenix) hooked.
    2011-09-17 11:58:48 [INFO] [AutoSave][Permission] Permissions (Phoenix) found: Loaded
    2011-09-17 11:58:48 [INFO] [ButtonWarp] Moving Files... Please Reload Server
    2011-09-17 11:58:48 [INFO] ButtonWarp 1.1 is enabled!
    2011-09-17 11:58:48 [INFO] [ButtonWarp] Successfully linked with Permissions!
    2011-09-17 11:58:48 [INFO] [ButtonWarp] Successfully linked with iConomy 5!
    2011-09-17 11:58:48 [INFO] Cards is working properly!
    2011-09-17 11:58:48 [INFO] ChestLock 1.1 is enabled!
    2011-09-17 11:58:48 [INFO] [ChestLock] Successfully linked with Permissions!
    2011-09-17 11:58:48 [INFO] [ChestShop] version 3.00 BETA 11 initialized!
    2011-09-17 11:58:48 [INFO] [ChestShop] iConomy 5 loaded.
    2011-09-17 11:58:48 [INFO] [ChestShop] Permissions version 3.1.6 loaded.
    2011-09-17 11:58:48 [INFO] Elevators version 1.4.3 is enabled and linked to Permissions! 0 elevators in worlds "World", "World_nether" loaded.
    2011-09-17 11:58:48 [INFO] Loaded Essentials build 2.2.8 maintained by Zenexer, ementalo, Aelux, Brettflan, KimKandor, snowleo and ceulemans.
    2011-09-17 11:58:48 [INFO] Loaded EssentialsProtect build 2.2.8 maintained by Zenexer, ementalo, Aelux, Brettflan, KimKandor, snowleo and ceulemans.
    2011-09-17 11:58:48 [INFO] Loaded EssentialsSpawn build 2.2.8 maintained by Zenexer, ementalo, Aelux, Brettflan, KimKandor, snowleo and ceulemans.
    2011-09-17 11:58:49 [INFO] [iConomy] v5.01 (Eruanna) loaded.
    2011-09-17 11:58:49 [INFO] [iConomy] Developed by: [Nijikokun]
    2011-09-17 11:58:49 [INFO] [Cards] Hooked into iConomy.
    2011-09-17 11:58:49 [INFO] [iConomy] hooked into Permissions.
    2011-09-17 11:58:49 [INFO] [Lottery] Payment method found (iConomy version: 5)
    2011-09-17 11:58:49 [INFO] [MagicCarpet] MagicCarpet version 1.5.6 is enabled!
    2011-09-17 11:58:49 [INFO] [MagicCarpet] Take yourself wonder by wonder, using /magiccarpet or /mc.
    2011-09-17 11:58:49 [INFO] [MagicCarpet] Using Permissions.
    2011-09-17 11:58:49 [INFO] [Minecart Mania] Debug mode switched to NORMAL
    2011-09-17 11:58:49 [INFO] [Minecart Mania] MinecartManiaCore version 1.2.8 is enabled!
    2011-09-17 11:58:49 [INFO] [Minecart Mania] MinecartManiaSignCommands version 1.2.8 is enabled!
    2011-09-17 11:58:49 [INFO] [MobBounty] v4.05 (Oxygen) enabled.
    2011-09-17 11:58:49 [INFO] [MobBounty] Developed by: [Mattera, Steven (IchigoKyger)].
    2011-09-17 11:58:49 [INFO] [MobBounty] Special Thanks to: nijikokun for the Register API.
    2011-09-17 11:58:49 [INFO] [MobBounty] Config loaded.
    2011-09-17 11:58:50 [INFO] [MobBounty] Permission plugin was found (Permissions v3.1.6).
    2011-09-17 11:58:50 [INFO] [MobBounty] Payment plugin was found (iConomy v5).
    2011-09-17 11:58:50 [INFO] [MonsterHunt] MonsterHunt Loaded!
    2011-09-17 11:58:50 [INFO] PhatLoots 0.9.1 is enabled!
    2011-09-17 11:58:50 [INFO] [PhatLoots] Successfully linked with Permissions!
    2011-09-17 11:58:50 [INFO] [PhatLoots] Successfully linked with iConomy 5!
    2011-09-17 11:58:50 [INFO] [PorteCoulissante] plugin version 1.2.1 by Captain_Chaos enabled
    2011-09-17 11:58:51 [INFO] [Regios] Spout detected! Spout support enabled!
    2011-09-17 11:58:51 [INFO] [Regios] Checking directories.
    2011-09-17 11:58:51 [INFO] [Regios] Directory check completed.
    2011-09-17 11:58:51 [INFO] [Regios] Checking configuration files.
    2011-09-17 11:58:51 [INFO] [Regios] Configuration check completed.
    2011-09-17 11:58:51 [INFO] [Regios] Loading configuration files.
    2011-09-17 11:58:51 [INFO] [Regios] Loaded default region configuation file.
    2011-09-17 11:58:51 [INFO] [Regios] No economy preset specified in config.
    2011-09-17 11:58:51 [INFO] [Regios] Loading world configuration for world : World
    2011-09-17 11:58:51 [INFO] [Regios] Loading world configuration for world : World_nether
    2011-09-17 11:58:51 [INFO] [Regios] Configuration files loaded successfully!
    2011-09-17 11:58:51 [INFO] [Regios] No Regions to load.
    2011-09-17 11:58:51 [INFO] [Regios] Permissions support enabled!
    2011-09-17 11:58:51 [INFO] [Regios] Starting scheduler task...
    2011-09-17 11:58:51 [INFO] [Regios] Scheduler task initiated!
    2011-09-17 11:58:51 [INFO] [Regios] Regios version 4.0.71 enabled successfully!
    2011-09-17 11:58:51 [INFO] [Regios] Regios Developed by [Adamki11s].
    2011-09-17 11:58:51 [INFO] [SpawnMob] Permission system found, plugin enabled
    2011-09-17 11:58:51 [INFO] [SpawnMob] Version 1.9.6 enabled.
    2011-09-17 11:58:52 [INFO] Spout 1.0.5.227 has been initialized
    2011-09-17 11:58:52 [INFO] Turnstile 1.9.1 is enabled!
    2011-09-17 11:58:52 [INFO] [Turnstile] Successfully linked with Permissions!
    2011-09-17 11:58:52 [INFO] [Turnstile] Successfully linked with iConomy 5!
    2011-09-17 11:58:52 [INFO] VoxelAir version 2.008 is enabled!
    2011-09-17 11:58:52 [INFO] [VoxelPort] ContainerSize set to 100
    2011-09-17 11:58:52 [INFO] [VoxelPort] Config loaded
    2011-09-17 11:58:52 [INFO] [VoxelPort] Portals loaded! 4 portals have been loaded.
    2011-09-17 11:58:52 [INFO] [VoxelPort] Portal zones have been sorted into 1 containers.
    2011-09-17 11:58:52 [INFO] [VoxelPort] Starting thread...
    2011-09-17 11:58:52 [INFO] [VoxelPort] Thread Started!
    2011-09-17 11:58:52 [INFO] VoxelPort version 2.028 is enabled!
    2011-09-17 11:58:52 [INFO] [VoxelSniper] Config loaded
    2011-09-17 11:58:52 [INFO] VoxelSniper version 4.753 is enabled! Snipe away.
    2011-09-17 11:58:52 [INFO] WorldEdit 4.6 enabled.
    2011-09-17 11:58:52 [INFO] WorldEdit: Permissions plugin detected! Using Permissions plugin for permissions.
    2011-09-17 11:58:53 [INFO] WorldGuard: Permissions plugin detected! Using Permissions plugin for permissions.
    2011-09-17 11:58:53 [INFO] WorldGuard: (World) Single session is enforced.
    2011-09-17 11:58:53 [INFO] WorldGuard: (World) TNT ignition is PERMITTED.
    2011-09-17 11:58:53 [INFO] WorldGuard: (World) Lighters are PERMITTED.
    2011-09-17 11:58:53 [INFO] WorldGuard: (World) Lava fire is blocked.
    2011-09-17 11:58:53 [INFO] WorldGuard: (World) Fire spread is UNRESTRICTED.
    2011-09-17 11:58:53 [INFO] WorldGuard: Loaded configuration for world 'World"
    2011-09-17 11:58:53 [INFO] WorldGuard: (World_nether) Single session is enforced.
    2011-09-17 11:58:53 [INFO] WorldGuard: (World_nether) TNT ignition is PERMITTED.
    2011-09-17 11:58:53 [INFO] WorldGuard: (World_nether) Lighters are PERMITTED.
    2011-09-17 11:58:53 [INFO] WorldGuard: (World_nether) Lava fire is blocked.
    2011-09-17 11:58:53 [INFO] WorldGuard: (World_nether) Fire spread is UNRESTRICTED.
    2011-09-17 11:58:53 [INFO] WorldGuard: Loaded configuration for world 'World_nether"
    2011-09-17 11:58:53 [INFO] WorldGuard 5.2.2 enabled.
    2011-09-17 11:58:53 [INFO] [iChat] Found Permissions (v3.1.6)
    2011-09-17 11:58:53 [INFO] iChat (v2.3.3-p3) enabled
    2011-09-17 11:58:53 [INFO] [Minecart Mania] Permissions detected. Using permissions.
    2011-09-17 11:58:53 [INFO] [Minecart Mania] MinecartManiaAdminControls version 1.2.7 is enabled!
    2011-09-17 11:58:53 [INFO] [Minecart Mania] MinecartManiaChestControl version 1.2.5 is enabled!
    2011-09-17 11:58:53 [INFO] [MobArena] Payment method found (iConomy version: 5)
    2011-09-17 11:58:53 [INFO] [MobArena] No valid recurrent waves detected for arena 'default'. Using defaults...
    2011-09-17 11:58:53 [INFO] [MobArena] v0.94.2 enabled.
    2011-09-17 11:58:53 [INFO] [ScrollingMenuSign]: [ScrollingMenuSign] Register library not found! Downloading...
    2011-09-17 11:58:56 [INFO] [ScrollingMenuSign]: [ScrollingMenuSign] Register library downloaded. Server reboot required to load.
    2011-09-17 11:58:56 [INFO] [ScrollingMenuSign]: saved 0 menus  and 0 views to file.
    2011-09-17 11:58:56 [INFO] [ScrollingMenuSign]: ScrollingMenuSign version 0.6 is disabled!
    2011-09-17 11:58:56 [INFO] Server permissions file permissions.yml is empty, ignoring it
    2011-09-17 11:58:56 [INFO] Done (1.047s)! For help, type "help" or "?"
    2011-09-17 11:59:02 [INFO] [VoxelPort] PortTick thread executing. Running at interval of 5000ms, with 100 CodeTime each Tick
    
     
  19. Offline

    desht

    Well. it looks like it downloaded OK, but can you check your bukkit/lib/ folder to see if Register.jar is really present? (Your bukkit/ folder is where craftbukkit.jar sits - in that folder there should also be a lib/ subfolder which contains Register.jar. If even lib/ doesn't exist, then create it and restart your server again).

    One other question: what OS are you running the server on?
     
  20. Offline

    cky2250

    hey now i get this error(i only updated from your old jar and fallowed your install prompts), it might be the craftbukkit version 1134. This error happens when i go to click the sms sign everthing else works. Everything as in your other sms parts.
    2011-09-17 17:34:50 [SEVERE] Could not pass event PLAYER_INTERACT to ScrollingMenuSign
    java.lang.NoSuchMethodError: net.minecraft.server.ItemInWorldManager.<init>(Lnet/minecraft/server/WorldServer;)V
    at com.edwardhand.commandsigns.CommandSigns.runCommandString(CommandSigns.java:994)
    at me.desht.scrollingmenusign.SMSCommandSigns.runCommandString(SMSCommandSigns.java:41)
    at me.desht.scrollingmenusign.SMSMacro.executeCommand(SMSMacro.java:180)
    at me.desht.scrollingmenusign.SMSMacro.executeCommand(SMSMacro.java:141)
    at me.desht.scrollingmenusign.SMSMenuItem.execute(SMSMenuItem.java:138)
    at me.desht.scrollingmenusign.listeners.SMSPlayerListener.processAction(SMSPlayerListener.java:211)
    at me.desht.scrollingmenusign.listeners.SMSPlayerListener.onPlayerInteract(SMSPlayerListener.java:74)
    at org.bukkit.plugin.java.JavaPluginLoader$11.execute(JavaPluginLoader.java:314)
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:338)
    at org.bukkit.craftbukkit.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:161)
    at net.minecraft.server.ItemInWorldManager.dig(ItemInWorldManager.java:86)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:496)
    at net.minecraft.server.Packet14BlockDig.a(SourceFile:43)
    at net.minecraft.server.NetworkManager.b(NetworkManager.java:226)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:91)
    at net.minecraft.server.NetworkListenThread.a(SourceFile:108)
    at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:464)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:374)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:417)
     
  21. Offline

    desht

    Well that error is from CommandSigns, not SMS, and this is also a non-recommended version of CraftBukkit that you're testing with, and I don't provide support for non-recommended builds.

    Having said that, I will be doing some testing with newer CB builds this week, and if CommandSigns isn't working for you, you need to look at the new built-in command parser that I've added in v0.6 - see http://dev.bukkit.org/server-mods/scrollingmenusign/pages/command-parser/ . If CommandSigns has stopped working with newer builds, there isn't anything I can do about it (and it's no longer maintained by the original author).

    New release:
    v0.6.2 (18 Sep 2011):
    • Updated for new Register build.

    @Monkey_nuts, this should hopefully get you up and running - please let me know if this version works better for you.


    Download at dev.bukkit.org: http://dev.bukkit.org/media/files/542/289/ScrollingMenuSign.jar

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 16, 2016
  22. Offline

    bluehasia

    ** FATAL SERVER GLITCH**
    ok so i made one sign named WARP "/sms create WARP WARP" put all the options on it and it worked fine. and i thought ok if i add another sign at another location and name it WARP also will all the options appear on this sign to so i dont have to redo it all again. as soon as i entered /sms create WARP I was kicked off the server i was unable to log into the server tried many many times and was only able to relog back in once i delete the sms folder in my plugin folder and did a /reload in my console command
     
  23. Offline

    desht

    Well, you need to use /sms sync menu-name to add a new sign to a menu you've already created.Don't try to use /sms create a second time, it won't work.

    However it shouldn't kick you or fail so badly so I'll take a look into that.
     
  24. Offline

    bluehasia

    i did the sync option and it works fine now, i look at a new sign and sync and it loads the Warp options.

    great pluging, saves alot of of being lazy of having to type the gate warp commands in common locations
     
  25. Offline

    Irock23

    I'm guessing that maybe it just doesn't work with the latest stable build, but when I try to use SMS I get this when starting my server:

    I also get a "[SEVERE]" when I shut down my server and when I try to execute a command in-game. Like I said, I guess this is because SMS just needs to be updated, if that is the case, I hope it gets updated soon.
     
  26. Offline

    desht

    I just tried to reproduce this, couldn't. I created a menu called WARP:
    Code:
    /sms create WARP WARP
    
    and added a few items to it.

    Then placed a second sign, and did:
    Code:
    /sms create WARP
    
    and got the error A menu called 'WARP' already exists - which is what I'd expect.

    What version of SMS & CraftBukkit are you running?

    Try removing bukkit/lib/Register.jar and reloading the server (you'll need to reload twice). It could be you have an outdated version of Register.jar.

    When you say "latest stable build", you mean 1060, right?

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 16, 2016
  27. Offline

    Imm0rt41

    hey, one big problem with this is the fact that a single punch in creative mode breaks anything. so when i punch signs to tp somewhere, they break. maybe you could do that thing that world edit does where when you left click with the wand the block doesnt break, maybe you could do that same thing when punching signs.
     
  28. Offline

    Irock23

    1060 would be the latest recommended build, the latest stable build is 1149. I know I have the latest Register.jar, already made sure of that.
     
  29. Offline

    Adam6120

    mine says it needs to download it from some url but it cant

    help!

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 16, 2016
  30. Offline

    Imm0rt41

    if you want help, provide better info then "it says it needs to be downloaded from some url but it cant".

    what url does it say, is this when trying to download the plugin from this site or is it an error in console. we cant see your computer and know the errors and how to fix it. GIVE US INFO
     
  31. Offline

    Adam6120

    Last edited by a moderator: May 16, 2016

Share This Page