• 0

    posted a message on Need some grown up help - server partnership
    PM sent
    Posted in: Server Recruitment
  • 0

    posted a message on CANT BREAK/PLACE BLOCKS ON SERVER
    Im guessing its essentials anti-build. Get rid of it you dont need it if you use worldguard, but a list of your plugins would be helpfull
    Posted in: Server Support and Administration
  • 0

    posted a message on Which Control Panel?
    Thanks for the input. I decided on Multicraft and picked up a 5 server License.
    Posted in: Server Support and Administration
  • 0

    posted a message on [LF] Mature Server
    Try out www.maddyncraft.com. I founded the server just on what you are looking for. I got tired of power hungry 12 year old admins and mods. We have a relaxed and laid back server. Its a SMP running MCMMO and PS stones. We have two worlds. On for PVP and one Non PVP.

    We have a great 6GB hosted no lag server, Teamspeak, and a website. Good luck finding a new MC home if you dont join us.
    Posted in: Server Recruitment
  • 0

    posted a message on Which Control Panel?
    Currently my server is a hosted server, we eventually want to migrate to a dedicated server. So to get some practice on working with a dedicated server I picked up a small 1GB VPS and installed Multicraft Control Panel. The multicraft free version is limited to 1 server and I wanted to try and install bungee so we could try it out before we took the plunge on multiple servers.

    Look at the MC control panels there seems to be 3 choices. Multicraft, MCMyAdmin, and TCAdmin.

    TC is out of the question as their pricing is just ludicrous for a small server setup.

    I have never used MCMyAdmin is there any advantage to using it over Multicraft? Multicraft will probably be what we go with but I wanted somones elses feedback before we commit to a 3 or 4 server license. The only drawback I can see with the multicraft package is there is no way to upgrade if you use all of your licenses.

    Are there any other panels out there worth using? Free would be nice but It would need to be able to do multiple servers and be Linux compatible.
    Posted in: Server Support and Administration
  • 0

    posted a message on Magic Launcher failure with Windows 8?
    same issue....any solution yet?
    Posted in: Java Edition Support
  • 0

    posted a message on Macro / Keybind Mod
    Quote from Mumfrey

    Oh I see, I thought because you posted an example with < > that your server put your name in pointy brackets. Well you can still use an assertion to negate your match, basically if you start a pattern with ?<! it means that that pattern must not occur before the next part of the pattern for the match to succeed, it's called a negative lookbehind assertion. So you can use:
    IFMATCHES(%CHATCLEAN%,"(?<!\[CEO\]) ?maddyn99");

    I put the " ?" there because I can't tell if there's a space between the closing ] and your name, if there is no space then you can use
    IFMATCHES(%CHATCLEAN%,"(?<!\[CEO\])maddyn99");



    Thanks for trying but neither of those work. It stil triggers whenever I talk.

    Scratch that. I thought i was supposed to keep the ? in there. I took it out and left a space and it worked perfectly. You sir are a genius.
    Posted in: Minecraft Mods
  • 0

    posted a message on Macro / Keybind Mod
    Quote from Mumfrey



    I assume you're trying to create a kind of IRC-like "notify" so that it dings if someone says your name right?

    Well you can condense your second example down to:
    IFMATCHES(%CHATCLEAN%,"(?<!\<)maddyn99(?!\>)")
    PlaySound(note.pling)
    PlaySound(note.bass)
    ENDIF

    The negative assertions should stop it matching your name when preceded by OR followed by the relevant characters. If that still doesn't work then it would be best to see a sample of chat. For example you may need to "anchor" the regex to the start of the message.


    Yes that exactly what I am trying to do, an IRC type of ping or notification. Your script works fine however when I talk it triggers off of my chat as well. So bascily everytime I say something it triggers the sound, not exactly an ideal.

    Here is an example of my chat per your request.

    Posted in: Minecraft Mods
  • 0

    posted a message on Macro / Keybind Mod
    Im having problems with the playsound command. Here is what I am using.

    IFMATCHES(%CHATCLEAN%,"maddyn99")
    ELSE
    		 PlaySound(custom.sound)
    ENDIF

    It plays the sound just fine but the problem is that it triggers on EVERY line of text no matter who said it or what is said.
    What am i doing wrong?

    I tried another variation and it plays a sound even when I say my name but now it seems to not trigger on all text. It only triggers when I talk or when somone says my name. Any way to filter out when I talk?

    IFMATCHES(%CHATCLEAN%,"maddyn99")
    IFMATCHES(%CHATCLEAN%,"<maddyn99>")
    ELSE
    		 PlaySound(note.pling)
    		 PlaySound(note.bass)
    ENDIF
    ENDIF
    Posted in: Minecraft Mods
  • 0

    posted a message on Macro / Keybind Mod
    Quote from Mart3323

    you can use the script command Slot(number) to select a hotbar slot
    try pressing those buttons while in that screen.., like, not find them in the visible layout thing but actually press them
    this should work for every button except mouse buttons, i believe

    you can treat it as two different events, but you could also just say repeat [teleport, heal, 5 times [heal, wait 4]]
    $${
    if(name);
    log("name has stopped");
    unset(name);
    stop();
    else;
    log("name has started");
    set(name);
    do();
    ECHO("/warp XYZ");
    Do(5);Echo(/heal);Wait(4);Loop;
    loop;
    endif;}$$



    worked perfectly. Thank you so much.
    Posted in: Minecraft Mods
  • 0

    posted a message on Macro / Keybind Mod
    I am having some problems with a macro. I'm trying to tweak one i found in another thread.

    $${if(name);log("name has stopped");unset(name);stop();else; log("name has started");set(name);
    do; wait(4);ECHO("/warp XYZ"); loop;endif;}$$


    What I want to be able to do is warp to XYZ and have it wait 20 seconds and warp again, but in the
    meantime i want it to do a /heal command every 4 seconds. Is this possible or do I need to run two macros at the same time?

    $${if(name);log("name has stopped");unset(name);stop();else; log("name has started");set(name);
    do; ECHO("/warp XYZ")wait(20);ECHO("/heal"); loop;endif;}$$


    is about as close as I can get, but it only heals me every 20 seconds.
    Posted in: Minecraft Mods
  • 0

    posted a message on Macro / Keybind mod scripts!
    I am having some problems with a macro. I'm trying to tweak one i found in another thread.

    $${if(name);
             log("name has stopped");
             unset(name);
             stop();
       else;
             log("name has started");
             set(name);
            do;                     
                             wait(4);
                    ECHO("/warp XYZ");
            loop;
            endif;
    }$$


    What I want to be able to do is warp to XYZ and have it wait 20 seconds and warp again, but in the
    meantime i want it to do a /heal command every 4 seconds. Is this possible or do I need to run two macros at the same time?
    Posted in: Mods Discussion
  • 0

    posted a message on RackFlux.com - SSD Nodes | Speedy Setup | Bukkit/Tekkit/Vanilla | Starting @ $3.50 | Live Chat!
    Promised 100% instant setup....7 Hours later and no response from a service ticked I decided to take my business elsewhere.
    Posted in: Minecraft Server Hosting
  • 0

    posted a message on Macro / Keybind Mod
    Was there ever an answer to this post???

    http://www.minecraft...0#entry22296393

    I have the same question. I wouild like to use the same font and size as the default chat or even better to change the size and font.

    Also is there any way to make the chat boxes scrollable?

    BTW I am LOVING this mod and the chatfilter. Thank you so much for your hard work.
    Posted in: Minecraft Mods
  • 0

    posted a message on [1.5.2]Ariadne's Thread
    Quote from Felina_Lain

    Please update it for 1.5.2! I need this mod! I can't go without anymore, I always get lost!


    I know the feeling. I sent a message to the Mod Programmer and he said hes waiting for an update to MCP.
    Posted in: Minecraft Mods
  • To post a comment, please .