Kaladim Drink

fdisku

You call that a tattoo? THIS is a tattoo!
Joined
Sep 22, 2006
Messages
321
Reaction score
0
Points
16
Location
Michigan
Website
www.myspace.com
Trying to find teh two ground spawns in North Karana and am having no luck at all can anyone advise where the mushroom and fungus spawn for this combine?
 
Trying to find teh two ground spawns in North Karana and am having no luck at all can anyone advise where the mushroom and fungus spawn for this combine?

Welp, I'd start in Kaladim, not the Karanas. :D
 
The shrooms for kaladim constitutionals dont spawn in NK to my knowledge, they do spawn in Kaladim (the second one off butcherblock, not the first).. and more recently LFay.. concentrated around the faerie village thing, but they spawn all over the place there.

Ones in kaladim respawn faster than lfay, but there's less of them.

Kaladim = close, few, fast spawn

LFay = sparse, lots, longish spawn
 
lol

You know you have been grinding EQ for way to long when you get kaladim and karana mixed up ROFL

Ive been here for a hour....

No comment from you all! youve done it before lol

Thanks guys
 
1. Are you trying to make Kaladim Constitutional

2. Are you talking about? A Strange Dark Fungus

3. And did you mean? Underfoot Mushroom

Because Kaladim Kaladim Kaladim Kaladim Kaladim Kaladim Kaladim Kaladim Kaladim Kaladim Kaladim Kaladim Kaladim Kaladim Kaladim Kaladim Kaladim Kaladim Kaladim Kaladim Kaladim Kaladim Kaladim Kaladim Kaladim Kaladim
is written all over this.

If you didn't catch that Hint goto KaladimB and start farming them.
 
When most are told "NK or "North K" they assume north karana. no one ever thinks "north kaladim".
If you are having a brain fart, it's easy to head to karana instead.
 
When you zone into Kaladam look at your map. You will see a little farm area next to a river/stream water anyway. Go to that farm and that is where they are. In the building next to the shroom farm is a brewbarrow. So you can look for tha too and there are 2 merchamts inside make sure you are of good faction with these peeps or you will be killed very fast.

the shrooms spawn every 5 minutes and there is a mac that you can use on the mq2 vip forums ;)
 
Try this, pretty sure it's the one I used after a little tweaking.

Code:
| -------------------------------------------------------------------------- 
| autoShroom.mac 
| harvests the kaladim fungi 
| original macro was by psychotik 
| Updates by BrainDeath, Exmarine 
| -------------------------------------------------------------------------- 

#turbo 
#chat tell 
#event Full "#*#There was no place to put that#*#" 

Sub Main 

/echo Welcome to autoShroom 
/declare DummyTime string outer 
/declare DummyMsg string outer 
/declare ShroomCount int outer 
/varset DummyTime 5m 
/varset DummyMsg AFK 
/cleanup 

/notify actionsmainpage AMP_WalkButton leftmouseup 
/afk off 
/delay 1s 
/sit off 
/delay 1s 

:HarvestLoop 
/call CheckForPCs 

/for ShroomCount 1 to 9 
  /squelch /itemtarget *Blue 
  /if (${Ground.Distance}<150) { 
    /call MoveToTarget 
    /call GetIt 
    /doevents 
  } 
  /squelch /itemtarget *Red 
  /if (${Ground.Distance}<150) { 
    /call MoveToTarget 
    /call GetIt 
    /doevents 
  } 
  /call CheckForPCs  
/next ShroomCount 

/notify actionsmainpage AMP_RunButton leftmouseup 
/delay 1s 
/target clear 
/face loc 661,-107 
/keypress CENTERVIEW 
/delay 2s 

/afk ${DummyMsg} 
/echo Next Harvest 6 minutes... 
  /delay 1m 
  /echo 5 minutes... 
  /delay 1m 
  /echo 4 minutes... 
  /delay 1m 
  /echo 3 minutes... 
  /delay 1m 
  /echo 2 minutes... 
  /delay 1m 
  /echo 1 minute... 
  /delay 1m 
/echo Preparing to Harvest... 
/delay ${Math.Rand[300]} 

/doevents 
/afk off 
/delay 2s 
/notify actionsmainpage AMP_WalkButton leftmouseup 
/goto :HarvestLoop 
/return 

Sub MoveToTarget 
:KeepMoving 
/face loc ${Ground.Y}, ${Ground.X} 
/delay 1 
/keypress forward hold 
/if (${Ground.Distance}>15) /goto :KeepMoving 
:StopMoving 
/keypress forward 
/return 

Sub DummyMode 
/beep 
/echo Entering Dummy Mode... 
/delay 1s 
/afk ${DummyMsg} 
:waitabit 
/delay ${DummyTime} 
/if (${Spawn[gm].ID} || (${SpawnCount[pc radius 150 loc -140 640]}>1)) /goto :waitabit 
/afk off 
/delay 1s 
/return 


Sub CheckForPCs 
/if (${Spawn[gm].ID}) { 
  /echo GM in Zone! 
  /call DummyMode 
} 
/if (${SpawnCount[pc radius 150 loc -140 640]}>1) { 
  /echo PC nearby! 
  /call DummyMode 
} 
/return 


Sub GetIt 
/click left item 
/delay 5s (${Cursor.ID}) 
/delay ${Math.Rand[10]} 
/autoinv 
/delay 5s (!${Cursor.ID}) 
/delay ${Math.Rand[10]} 
/doevents 
/return 

Sub Event_Chat 
/if (!${Me.AFK}) { 
  /reply AFK Message: ${DummyMsg} 
  /afk ${DummyMsg} 
} 
/echo Received a Tell...Ending. Camping soon 
/beep 
/timed 1000 /camp 
/endmacro 
/return 


Sub Event_Full 
/echo "Your inventory is full...Ending." 
/camp 
/endmacro 
/return
 
Will this mac be safe to run. Looking through it i didnt see any active but i am a bit rusty :)

Thanks.