Anomander Rake
Golden Knight of the Realm
- 705
- 15
@Soygen - is that what the world looks like to you or are you sculpting the earth to make it look like Minecraft on purpose?
Yeah, this might be it for me after tonight for a couple of days. I am starting to get crazy eyes and a feeling of being severed from reality lol.I think I got builder burnout right now. Taking a few days off to relax a bit.
How do I do that? Don't make me read guides on this thing, please!Soygen just have it loop/restart every 45 seconds
I had voxel smoothing off when I took that shit. It's on the options screen with resolution settings.@Soygen - is that what the world looks like to you or are you sculpting the earth to make it look like Minecraft on purpose?
Man I woulda rolled with it. If anyone ever traps me I'm just going to be a good sport and laugh. If you trap me I'm just going to ask what kind of sexual favors you want now, since I'm in your cage. I think it's hilarious. Why flip out?Right after I took the screenshot I renamed my plot to Dingpong's Tomb and he flipped his shit. After listening to him bitch for 10 minutes or so I asked him if he was able to just Evac out and he said he couldn't so I let him out. It was so tempting to keep him trapped though.
The one I posted a few pages ago will do 2 trees, so you are always chopping something.-Download autohotkey from the official website
-Start autohotkey
-Open new .txt file and paste the following
toggle = 0
#MaxThreadsPerHotkey 2
F8::
Toggle := !Toggle
While Toggle{
Click
Send a
sleep 900
}
return
-Save .txt file as whateveryouwant.txt
-Right click whateveryouwant.txt, open with, autohotkey
-Window mode your game
-In game equip your axe and get in the right spot for choppin woods, make sure you're close enough first
-Make sure autohotkey is enabled (icon in taskbar will appear green, red will mean it is disabled)
-Hit the F8 key and make sure your game window is the active window
-Let the burled wood flow
Highly recommended that you find a tree that is at least 70% inside a taken claim as it will respawn within seconds (not really tested, but seems to be true)
Enjoy being a Chinese gold farmer
Make me one that builds an awesome castle out of voxels.The one I posted a few pages ago will do 2 trees, so you are always chopping something.
Do you have that one handy?The one I posted a few pages ago will do 2 trees, so you are always chopping something.
That's the grid snapping, sometimes it just gets stuck on shit.Yeah, this might be it for me after tonight for a couple of days. I am starting to get crazy eyes and a feeling of being severed from reality lol.
BTW - does anyone else get a sticky "cursor" when building / removing? I chalked it up to lag, but it has been driving me crazy lately. Like hovering over the space I want to fill / remove, and it moves there. Then immediately to the left or right.
Do you have that one handy?
Difference is mine you have to use the spy thing in Auto hotkey to get the 2 mouse position locations and time how long it takes you to chop down each tree. It will click and hold down on first location for how you set the sleep(1000 is 1 second), then move and do the same to a 2nd tree(obviously the 2 trees are right next to each other).Very easy with Auto Hotkey:
BreakLoop=0
SetTimer, Loop, 1
F1::BreakLoop=1
F2::BreakLoop=0
Loop:
Loop {
if (BreakLoop = 1) ; While the F1 key is being held down physically.
break
Click down, (window mouse cords)
Sleep (time it takes to chop a tree down + little extra)
Click up left
Click down, (window mouse cords)
Sleep (time it takes to chop a tree down + little extra)
Click up left
}
I actually found a spot where a tree would respawn so quickly that it would respawn before the current version of itself was even chopped down. Not sure if it's still like that or not.Difference is mine you have to use the spy thing in Auto hotkey to get the 2 mouse position locations and time how long it takes you to chop down each tree. It will click and hold down on first location for how you set the sleep(1000 is 1 second), then move and do the same to a 2nd tree(obviously the 2 trees are right next to each other).
His is a lot simpler,no need to have locations just put mouse where you need it.
I bet if you had a super fast axe, could find a spot with 3 trees in range and set it up to do all 3.