3

Macro / Keybind Scripts

Phush's Avatar Phush9/27/13 2:35 am
3 emeralds 41k 5
7/8/2015 3:41 pm
leasoncre's Avatar leasoncre


Automine / Autoattack
Click to reveal
Open up your Macro / Keybinds VIA [SHIFT] + Grave (" ` ")
Enter in the following line(s)
$${if(automine);
log("Automine Disabled");
unset(automine);
else;
log("Automine Enabled");
set(automine);
do;
key(attack);
while(automine);
endif;}$$

Press the hotkey to toggle on/off mode



AutoGreeter
Click to reveal
Open up your Macro / Keybinds VIA [SHIFT] + Grave (" ` ")
Enter in the following line(s)
$${
ECHO("Hello %JOINEDPLAYER%!");
}$$

Save this under EVENTS under onPlayerJoin



SignPlacer
Click to reveal
Open up your Macro / Keybinds VIA [SHIFT] + Grave (" ` ")
Enter in the following line(s)
$${
log(&5Aim to a Block!);
wait(100ms);
log(&5Creating Sign..);
wait(250ms);
PLACESIGN($$[Line1],$$[Line2],$$[Line3],$$[Line4],0);
}$$

Press the hotkey to activate


AutoUse
Click to reveal
Open up your Macro / Keybinds VIA [SHIFT] + Grave (" ` ")
Enter in the following line(s)
$${if(autousing);
log("&2[Macro] &fAutouse Stopped.");
unset(autousing);
stop();
else;
log("&2[Macro] &fAutouse Started.");
set(autousing);
do;
key(use);
loop;
endif;}$$

Press the hotkey to toggle on/off mode



Sneak Toggle
Click to reveal
Open up your Macro / Keybinds VIA [SHIFT] + Grave (" ` ")
Enter in the following line(s)
$${if(sneake);
log("&2[Macro] &fSneak off.");
unset(sneake);
keyup(sneak);
stop();
else;
log("&2[Macro] &fSneak on.");
set(sneake);
keydown(sneak);
endif;}$$

Press the hotkey to toggle on/off mode



TexturePack Changer
Click to reveal
Open up your Macro / Keybinds VIA [SHIFT] + Grave (" ` ")
Enter in the following line(s)
$${TEXTUREPACK($$[TexturePack]);log(&eChanging texturepack to %TEXTUREPACK% ...);}$$
Press the hotkey and enter the name of the folder or zip of the texture pack
e.g athers
athers.zip



Sprint Toggle
Click to reveal
Open up your Macro / Keybinds VIA [SHIFT] + Grave (" ` ")
Enter in the following line(s)
$${TOGGLEKEY(forward);SPRINT()}$$
Press the hotkey to toggle on/off mode



Crouch Toggle
Click to reveal
Open up your Macro / Keybinds VIA [SHIFT] + Grave (" ` ")
Enter in the following line(s)
$${TOGGLEKEY(sneak)}$$
Press the hotkey to toggle on/off mode



Auto Chat Logger
Click to reveal
Open up your Macro / Keybinds VIA [SHIFT] + Grave (" ` ")
Enter in the following line(s)
$${LOGTO("chatlog-%SERVER%-%DATE%.txt","[%TIME%] %CHATCLEAN%")}$$
Save this under EVENTS under OnChat and this will automatically make 1 log per server per day



Death Co-Ordinates
Click to reveal
Open up your Macro / Keybinds VIA [SHIFT] + Grave (" ` ")
Enter in the following line(s)
$${IF(HEALTH<=0); LOG("&6You died at: %XPOS%x, %YPOS%y, %ZPOS%z. "); ENDIF}$$
Save this under EVENTS under onHealthChange and it will tell you the co-ordiantes where you died



Low Hunger Reminder
Click to reveal
Open up your Macro / Keybinds VIA [SHIFT] + Grave (" ` ")
Enter in the following line(s)
$${if(%HUNGER% = 3);
log(&3Food Break Required);
endif;
}$$

Save this under EVENTS under onFoodChange and it will remind you when you are hungry



Basic Stats
Click to reveal
Open up your Macro / Keybinds VIA [SHIFT] + Grave (" ` ")
Enter in the following line(s)
$${
log(--- Stats ---);
log(Player: %PLAYER%);
log(TexturePack: %TEXTUREPACK%);
log(Health: %HEALTH%);
log(Hunger: %HUNGER%);
log(Co-Ordinates: x=%XPOS%, y=%YPOS%, z=%ZPOS%);
log(Dimension: %DIMENSION%);
log(Level: %LEVEL%)
if(%MODE% = 0);
log(Gamemode: Survival);
endif;
if(%MODE% = 1);
log(Gamemode: Creative);
endif;
if(%MODE% = 2);
log(Gamemode: Adventure);
endif;
log(Armor Durability:);
log(- Helmet: %HELMDURABILITY%);
log(- Chestplate: %CHESTPLATEDURABILITY%);
log(- Leggings: %LEGGINGSDURABILITY%);
log(- Boots: %BOOTSDURABILITY%);
log(Server: %SERVER%);
log(World Seed: %SEED%);
log(Time: %TICKS% ticks);
if (%RAIN% = 0);
log(Weather: Sunny);
else;
log(Weather: Raining);
endif;
}$$

Press the hotkey to show stats
Posted by Phush's Avatar
Phush
Level 40 : Master Mlem Mlem Bat
34

Create an account or sign in to comment.

5

1
07/08/2015 3:41 pm
Level 46 : Master Dragon
leasoncre
leasoncre's Avatar
Macro/Keybind mod for liteloader help:

1: how do i create a script that automatically posts a welcome message to NEW players only?
IE: sees [playerjoined] -AND- sees a server message saying welcome NEWplayer to the server.
and outputs "welcome to zzz-server, have fun!"

2: how do i filter a list of players online with those in a list?
IE: get's a list of player usernames online(username, NOT /nick'd names, like you see when you press TAB key) -and compares those online to a list (file) of usernames i have.
and outputs a LOG (client side only) of which of those names in the list are online
[basically a friends list, but haven't seen anywhere to setup a friends list]
1
06/04/2014 6:32 pm
Level 7 : Apprentice Architect
FRA22LE
FRA22LE's Avatar
Great macro's, thanks so much I am wondering if you do custom requests? I've been looking for a slot machine macro which when a player in a server messages me with a trigger, like 'Play', followed by sending me how much they want to bet, the macro then creates a random sequence of 3 numbers (with numbers ranging from 1-3, i.e. the possible combinations could be 1,3,2 2,2,3 1,1,1 etc) And if the player is given 3 numbers the same (1,1,1 2,2,2 3,3,3) Their money is tripled from what they bet, but if not, they do not get their money back... If you could make this for me, you would be amazing
1
05/16/2014 6:43 am
Level 2 : Apprentice Explorer
michaeladair
michaeladair's Avatar
I love it.
1
02/02/2014 3:54 am
Level 40 : Master Mlem Mlem Bat
Phush
Phush's Avatar
Bump
1
01/28/2014 12:11 am
Level 40 : Master Mlem Mlem Bat
Phush
Phush's Avatar
Bumb
Planet Minecraft

Website

© 2010 - 2024
www.planetminecraft.com

Welcome