• 0

    posted a message on Macro / Keybind Mod
    Try
    &say1 = "<test>";
    MATCH(%&say1%,"<(.*?)>", {&say1});
    LOG(%&say1%);
    Posted in: Minecraft Mods
  • 0

    posted a message on Macro / Keybind Mod
    Quote from Cloud7050»

    if(CHATCLEAN == "<cloud7050> test")
    if(%CHATCLEAN% == "<cloud7050> test")
    if(CHATCLEAN == <cloud7050> test)
    if(%CHATCLEAN% == <cloud7050> test)



    if(CHATCLEAN == "<cloud7050> test") //best way to do
    if(%CHATCLEAN% == "<cloud7050> test") //works to
    if(%CHATCLEAN% = "<cloud7050> test") //also works
    if(CHATCLEAN = "<cloud7050> test") //I think this works too, don't know though

    the thing is, if there's a leading space or if the text ends with a space this won't work.
    You can test that if you do

    ifmatches(%CHATCLEAN%,"^<cloud7050> test$")

    if this is false there's a space somewhere
    Posted in: Minecraft Mods
  • 0

    posted a message on Macro / Keybind Mod

    @DirtAndDust could you just log a message at the start of chatfilter? If nothing is logged if you get a chat message run CHATFILTER(1) and try again

    Posted in: Minecraft Mods
  • 0

    posted a message on Macro / Keybind Mod

    @KyleCG 1. please don't post stuff twice

    2. wdym 1.2.5? Minecraftversion 1.2.5?

    Posted in: Minecraft Mods
  • 0

    posted a message on Macro / Keybind Mod

    @ArlonCarol

    the module is for 1.11 but if you want just contact me via discord (ehehe) (link below) and I'll find sth

    btw. 1.8.9 is not support by Macromod afaik is it?

    Posted in: Minecraft Mods
  • 0

    posted a message on Macro / Keybind Mod

    @TangentialThreat

    you can use unsafe();do(3);press(LCONTROL);key(drop);loop;endunsafe();


    Anyway I just wanted to promote a discordserver I made bcs I wanted to try this at least once:


    http://discord.me/Macromod can be used to join the discord


    this discord should be used to develop or ask questions about macromod scripts and or macromod modules


    (I hope this is allowed if not please pm me a request to remove this)

    Posted in: Minecraft Mods
  • 1

    posted a message on Macro / Keybind Mod

    @T0tem that is not possible by default however there is a plugin that adds an command to click them

    Posted in: Minecraft Mods
  • 0

    posted a message on Macro / Keybind Mod
    @seeker17 that's not true, chatfilter will filter colored chat. Your code has to be not working. Anyway if you want to look for a single word you should use sth like following:
    strip(&chat,%CHAT%)
    ifcontains(%&chat%,"f***")
      filter()
    endif
    
    Posted in: Minecraft Mods
  • 0

    posted a message on Macro / Keybind Mod

    @noammiz007 just put config(%SERVER%) on the onJoinGame Event of every config

    Posted in: Minecraft Mods
  • 0

    posted a message on Macro / Keybind Mod
    @Dev2896 Should work like following:
    $${
    if(autousing);
      log("&d[AutoClicker] &bAutoClicker Disabled"); //never forget to end Strings
      unset(autousing);
      stop();
    else;
      log("&d[AutoClicker] &bAutoClicker Enabled"); //same goes here
      set(autousing);
      do;
        key(attack);
        wait(300); //why wait 300000ms when you can wait 300 seconds?
      loop;
    endif;
    }$$
    

    @GoldHussar you can't get nearby player afaik
    Posted in: Minecraft Mods
  • 0

    posted a message on Macro / Keybind Mod

    @flcmc thats basically what I did ways more difficult but easier to exclude more chars

    however you don't need the MATCH, just use %CHAT% instead of %&ms%

    Posted in: Minecraft Mods
  • 0

    posted a message on Macro / Keybind Mod

    @Treuce

    Posted in: Minecraft Mods
  • 0

    posted a message on Macro / Keybind Mod

    @Mumfrey oh I didn't knew that :o well thx for clearifying

    Posted in: Minecraft Mods
  • 0

    posted a message on Macro / Keybind Mod

    I'd like to request following feature:


    1. Add a VOLUME env which will return the current mastervolume set

    2. Add commands to set the volumes seperately like you did whith the vars

    Posted in: Minecraft Mods
  • 0

    posted a message on Macro / Keybind Mod

    @Treuce you could do what Cloud7050 said or just bind &[code]$$! on any key which will open the chat with &[code] alredy typed

    Posted in: Minecraft Mods
  • To post a comment, please .