• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Platpimp 3.0

Getin

New member
Joined
Mar 26, 2007
RedCents
***USE AT YOUR OWN RISK. USES MASS WARPS AND ZONES. AND IS PROBABLY WATCHED***



I've decided to move this into a new post as I've completely rewritten the macro. If I'm wrong please just let me know and move it into the old post.
It now runs much faster than the original found Here
On average I'm bringing in 20plat per minute. Results will vary based on loading times.
If you have any other ideas on things that would be great to be automated like this just let me know the details of the quest and I'll get it taken care of.
Rich (BB code):
|********************************************************************************************************************
 PlatPimp.mac 3.0 for www.redguides.com
Made by Tiikimagick 
Completely Rewritten by Getin, Quest Idea by Tiikimagick
-----------------------------------------------General Overview-----------------------------------------------------------
 You need to be bound in PoKnowledge
 Although any class/race may use this mac. A Darkelf Enchanter is the easiest.
 You need at least 1 jasper to start this macro
 You will need mq2rwarp and mq2piggyzone.
 Add this code to your piggyzone.ini: [neriakc] default= 805.97 -1415.28 -80.84
 It lands you right by the vendor(telnor the jewelry merch) to sell the loot and buy jasper.
 ***NOTE*** You Need 2 free Top-Level Spots in your inventory, for the jasper and quest item.
 I have removed the playercheck, this allows for running more than one at a time, as it is almost inevitable that they will be on the same step at the same time every once and a while
 Added PPM(plat per minute), Total Time and Run Counter stats, 
 Customize the number for "MaxRuns" to define after how many runs the macro stops.
 Customize the ChatIn for where you would like the Stats spam to go, NO SLASHES!
 echo, bc, i,gsay,tell soandso, and so forth are all acceptable but I wouldn't advise using /gsay or any other EQ chat.
/echo,/bc,/i,/gsay,/tell soandso are all NOT acceptable and will cause errors!
********************************************************************************************************************|

#Define DEBUG_1 /squelch /echo
#include common/buy.inc

Sub Main
	/declare MaxRuns int outer 1000
	/declare TimesRan int outer 0
	/declare StartPlat float outer ${Math.Calc[${Me.Cash}/1000]}
	/declare ChatIn string outer bc
DEBUG_1 StartPlat: ${StartPlat}
DEBUG_1 ChatIn ${ChatIn}
	/if (${FindItem[=klok's seal].InvSlot}) /call Handin2
	/if (${FindItem[=a sealed letter].InvSlot}) /call Handin3
	:MainLoop
	   /if (${Zone.ShortName.NotEqual[neriakc]}) /call PiggyZone neriakc
	   /if (${FindItem[combine].InvSlot}) /call SellItem
	   /if (!${FindItem[=jasper].InvSlot}) /call BuyJasper
	   /if (!${FindItem[=klok's seal].InvSlot} || !${FindItem[=a sealed letter].InvSlot}) /call Handin1
	   /if (${FindItem[=klok's seal].InvSlot}) /call Handin2
	   /if (${FindItem[=a sealed letter].InvSlot}) /call Handin3
	/goto :MainLoop
/return

Sub PiggyZone(zonename)
	/if (${zonename.Equal[gate]}) {
		/gate
		/call WaitTilThere PoKnowledge
	} else {
		/zone ${zonename}
		/call WaitTilThere ${zonename}
	}
/return

Sub WaitTilThere(zonename)
	:WaitLoop
	   /delay 1s
	/if (${Zone.ShortName.NotEqual[${zonename}]}) /goto :WaitLoop
	/if (${Spawn[gm].ID}) {
		/docommand ${ChatIn} GM IN THE ZONE GET THIS PLAT SOON!
		/quit
	}
/return

Sub SellItem
	/target npc Telnor
	/delay 5s ${Target.CleanName.Equal[Telnor D`Unnar]}
	/if (!${Window[MerchantWnd].Open}) /nomodkey /click right target
	/delay 10s ${Window[MerchantWnd].Open}
	/nomodkey /itemnotify ${FindItem[combine].InvSlot} leftmouseup
	/delay 3
	/nomodkey /notify MerchantWnd MW_Sell_Button leftmouseup
	/if (!${FindItem[=jasper].InvSlot}) /call Buy "Jasper" 100
	/delay 3
	/nomodkey /notify MerchantWnd MW_done_Button leftmouseup
	/delay 10s !${Window[MerchantWnd].Open}
	/call EchoStats
/return

Sub EchoStats
	/varcalc TimesRan ${TimesRan}+1
DEBUG_1 TimesRan: ${TimesRan}
	/declare CurrentPlat float local ${Math.Calc[${Me.Cash}/1000]}
DEBUG_1 CurrentPlat ${CurrentPlat}
	/declare PlatMade float local ${Math.Calc[${CurrentPlat}-${StartPlat}]}
DEBUG_1 PlatMade ${PlatMade}
	/declare TotalTime float local ${Math.Calc[${Macro.RunTime}/60]}
DEBUG_1 TotalTime: ${TotalTime}
	/declare PPM float local ${Math.Calc[${PlatMade}/${TotalTime}]}
DEBUG_1 PPM: ${PPM}
	/docommand /${ChatIn} I have made ${PlatMade}.
	/docommand /${ChatIn} In ${TotalTime} minutes.
	/docommand /${ChatIn} That's ${PPM} plat per minute!
	/docommand /${ChatIn} I have done this quest ${TimesRan} out of ${MaxRuns} times
	/if (${TimesRan}>=${MaxRuns}) {
		/camp desktop
		/docommand /${ChatIn} I have done the quest ${TimesRan} time to take a break
		/end macro
	}
/return

Sub Handin1
	/warp loc ${Spawn[Mare X`Lottl].Y} ${Spawn[Mare X`Lottl].X} ${Spawn[Mare X`Lottl].Z}
	/delay 5
	/target npc Mare X`Lottl
	/delay 5s ${Target.CleanName.Equal[Mare X`Lottl]}
	/ctrlkey /itemnotify ${FindItem[=jasper].InvSlot} leftmouseup
	/call GiveItem
/return

Sub Handin2
	/call PiggyZone gate
	/call PiggyZone  cabeast
	/warp loc ${Spawn[Half Elf Maiden].Y} ${Spawn[Half Elf Maiden].X} ${Spawn[Half Elf Maiden].Z}
	/delay 5
	/target npc Half Elf Maiden
	/delay 5s ${Target.CleanName.Equal[Half Elf Maiden]}
	/ctrlkey /itemnotify ${FindItem[=klok's seal].InvSlot} leftmouseup
	/call GiveItem
/return

Sub Handin3
	/call PiggyZone gate
	/call PiggyZone  qeynos2
	/warp loc ${Spawn[Brohan Ironforge].Y} ${Spawn[Brohan Ironforge].X} ${Spawn[Brohan Ironforge].Z}
	/delay 5
	/target npc Brohan Ironforge
	/delay 5s ${Target.CleanName.Equal[Brohan Ironforge]}
	/ctrlkey /itemnotify ${FindItem[=a sealed letter].InvSlot} leftmouseup
	/call GiveItem
/return

Sub GiveItem
	/face fast nolook
	/delay 5s ${Cursor.ID}
	/nomodkey /click left target
	/delay 5s ${Window[GiveWnd].Open} || !${Cursor.ID}
	/notify GiveWnd GVW_Give_Button leftmouseup
	/delay 9s !${Window[GiveWnd].Open}
/return

Sub BuyJasper
	/target npc Telnor
	/delay 5s ${Target.CleanName.Equal[Telnor D`Unnar]}
	/if (!${Window[MerchantWnd].Open}) /nomodkey /click right target
	/if (!${FindItem[=jasper].InvSlot}) /call Buy "Jasper" 100
	/delay 3
	/nomodkey /notify MerchantWnd MW_done_Button leftmouseup
	/delay 10s !${Window[MerchantWnd].Open}
/return


*Edit* added in the warning, I'm sorry guys I figured every one here knew the use of active hacks is asking for a banning.
 
Last edited:
worked fine for 3 days no problems, now when it tries to /warp to quest giver i end up in the GM box with the loc written on the walls? no gms online, no tells, junk acct but just curious



Steve
 
Its Running fine for me everyonce in awhile it gets stuck on the jasper turn in but thats about it no clue whats going on with that, And as it being watch i've seen a gm sitting on combine for a few hours waiting for the bot to warp into there but it will /q itself if it sees any gms on..
 
Well GM banned many poeple using this, really zone chaining for hours is asking for banning, pershap hand me your account i gotta make better use of it lmao.

If the GM wait in x zone for poeple to warp on them doing this macro its not going to help you to put up a GM detection in this, you will likely end up right over the GM head.

Second do you really think soe itself doesnt pay 5.99$ per month or 36$ per years to see these kind of macro ? ( one GM admin was sitting in neriakc for hours 2 days ago )

Each time more version of this macro being posted, more GM watch about it.....more poeple will actualy try it out and more will get banned.

A few get banned for using chainzoning from time to time and ending up reported by x person suspecting them from doing so, do you really think you wont get cough doing 5-6 chain zone every 2-3 min going through PoK ?

Remember they mass IP ban from time to time, using this is pushing your luck some.You have better chance to simply Gkilling in instance zone lol and its generaly more rewarding.

Anyway, you may be lucky and menage this macro few hours, few days but at some point you will get cough and you will most likely loose more than what you earned from it. Tons used this craps and tons got cough up, 20 pp every min.....go solo in plane of justice light blue trash drop 1 x 90 pp loot worth at 75% of the time, you may even get 2 sometime per kill and they take less than 1 min to kill if your not too bad geared......do the count.


Dont come cry this got you banned, most know that this macro is a banning traps and posting about it make it worse....or stop to write about it and try back in 3-4 month.....
 
zuruss said:
Well GM banned many poeple using this, really zone chaining for hours is asking for banning, pershap hand me your account i gotta make better use of it lmao.

If the GM wait in x zone for poeple to warp on them doing this macro its not going to help you to put up a GM detection in this, you will likely end up right over the GM head.

Second do you really think soe itself doesnt pay 5.99$ per month or 36$ per years to see these kind of macro ? ( one GM admin was sitting in neriakc for hours 2 days ago )

Each time more version of this macro being posted, more GM watch about it.....more poeple will actualy try it out and more will get banned.

A few get banned for using chainzoning from time to time and ending up reported by x person suspecting them from doing so, do you really think you wont get cough doing 5-6 chain zone every 2-3 min going through PoK ?

Remember they mass IP ban from time to time, using this is pushing your luck some.You have better chance to simply Gkilling in instance zone lol and its generaly more rewarding.

Anyway, you may be lucky and menage this macro few hours, few days but at some point you will get cough and you will most likely loose more than what you earned from it. Tons used this craps and tons got cough up, 20 pp every min.....go solo in plane of justice light blue trash drop 1 x 90 pp loot worth at 75% of the time, you may even get 2 sometime per kill and they take less than 1 min to kill if your not too bad geared......do the count.


Dont come cry this got you banned, most know that this macro is a banning traps and posting about it make it worse....or stop to write about it and try back in 3-4 month.....

What is it with you people. Anyone using an active hack knows that they can be banned. We dont need any damn conspiracy theories or "they sky is falling" stories.

If you dont have anything constructive to say about the macro, then dont post. No one needs to hear your "tough love" about not crying when they get banned.
 
I used 1.0 ran lvl 1 chanter. I was impressed she was lvl 6 and 300plat richer in 15min.. but have never ran it since then, just to scary for me.
 
If you dont have anything constructive to say about the macro, then dont post.

So you don't think posting a warning of the danger involved is constructive to new members of our community? I wish I had a few people warn me of the various dangers when I first joined ... maybe I wouldn't have lost one of my alternate accounts. People deserve to know both the positive and the negative. The positive is that you can make 20pp a minute. The negative is that you can get banned for 20pp a minute. I can't for the life of me see how that could possibly be a good tradeoff ... I mean seriously ... that's less than I pay for l337 cyborz.
 
I would advise against doing this macro and posting something of this nature.

Anything in PoK is just too damn risky.
 
Gods lord this is a board for hack, macro and safetly way to play, its not a freaking darn conspiracy you will get banned using this coz its WELL know since months by the Gm and watched from time to time, as i said you can run this 1-2 day without problem but you will get cough up.

Its my responsability to warn poeple about this macro, as you can see i am member since a few, before i was using my brother access when we both lived together and i POSTED a single time ever in here for many many month of lurking around so thats pershap coz i want to limite the dmg from this craps. I am all for the hack, i am all for the cheating, i am all for any good macro that will work for few weeks til it get nerfed.

This macro is a quest which they wont ever remove and they cant prevent us really from using chain zoning or warping so they watch it and ban at will , it may depend on which server you are, it may depend of many factor but that darn macro is a banning traps and i needed to post about it.

Tradeskill macro exploit that help you to make pp from clicking over and over, when soe find these out they will simply twist the combine and ban whoever was cough up macroying it, once its nerfed its done, its over , poeple may still try it but stop right away coz there is no more gain from it, so overall the ban stop right there.

That macro we speak about is a quest using lots of cheats which are being chain repeated which soe will never remove, so for the gods sake whoever will attemp to get a profit on short run from it or long run will get cough up thats all, if that post come back up with a version 4.0 in 6 month IT BE THE SAME thing, quest will still have been in game and GM will notice it being done again by 100 person new to this site or whoever older willing to give it a try and ban a bunch again.

1.0 banned a bunch
2.0 banned even more
why wouldnt be the 3.0 ban even more than the previous one?

As i said GM getting info from these forum, so anyway have fun trying it out if you love taking stupid risk for about no reward.
 
Yes i am frenchy sorry i do my best, the faster i type the worse it get and that guys few reply above made me see red for such comment, when i simply try to reduce the dmg caused by this macro.

At some point mq2 was used by a minority, as the time go by mq2 became very very popular and we arent all skilled in cheating and hacking, so these kind of macro seem really attractif for anyone new to mq2 and which will likely get them to try it out.We all know whatever using macro or mq2 may get you banned......but some macro or hack shouldnt be posted due to their exceptionnal risk and being well know by the GM.

Anyway if i save up some from being banned , this will make my day. But whoever intend to remake this macro in the future think about it twice and evaluate the risk before post.

Lots of news subscribe to this site, lots of new mq2 user and most will want to try it out.....you simply send them to a 100% ban and if really you feel the need to use such macro, go around and find a different quest NOT know by the GM yet.

Thx

Zuruss
 
Well if this is the kind of replies I get by posting things, I guess I'll just stop posting macros and the like. When I signed up for this board I was expecting a few things I didn't already know, I didn't come to this site for the active hacks, I came here for the platinum guides, which sadly, there are very few of, and most are already widely known and camped.

I've added a warning to the first post letting people know that if you use this chances are you will get banned, I honestly thought every one knew that warping and zoning would get you banned. If any of you mods have the power feel free just to delete the whole post.
 
I /salute you for posting. All this stuff can get you banned. As an MQer you evaluate the risk/reward factor. Sometimes the dice just come out wrong. So dont feel bad. As long as you warn peeps i see no probs at all with it
 
Sorry gethin ,

Really nothing againts you, you did something right and wrong in a sense, its a very good macro but on a very very bad quest to use on, like my last post said, find a quest 100% unknow by the GM and this will rock on.

But the fact i brang up is it use massive cheating which is already nasty to use at first but the worse part in it , that quest is know being abused with this macro for months ( the 1.0 and 2.0 ) and is highly watched by sony.

I really only wanted new member or well whoever feeling like using this to know that the GM will cough you up eventualy coz they look at it from time to time. No use to burn 1 + account for something highgly watched.

Your macro is very good tough P

Thx

Zuruss
 
but some macro or hack shouldnt be posted due to their exceptionnal risk and being well know by the GM.
this attitude is what makes me sad about redguides lately.

this is a board full of hacks and cheats.

almost everything here could get people banned, hell, almost everything here HAS gotten people banned at one point or another. I lost a beastlord in late 2004 JUST for non-afk macroing. a GM popped in completely invis, said my movement looked suspicious, and suspended me.

when sony actively scanned processes for a patch, anyone even running MQ got hit.

it's widely accepted that sony has fairly good warp tracking ability, and could ban 98% of people who warp using only publically known safety measure instantly.

RG is a community dedicated to cheating. If you use ANYTHING posted here, you must accept the risk, tiny though it may be, that you will be banned.

it is absurd to say that anything that anything does not belong here. (okay, except stuff like abyss's zone crash that fucked up every populated zone for a week and other things that are similiarly disruptive to other players.)

it is your responsibility to understand and accept (or decline) the risks of anything posted, NOT the person who posts it.
 
wow, actualy some folks are amazing. Yes this is a board to cheat and such but safetly and here is a MASSIVE difference into cheating and cheating using this macro.


Lets say a GM log on aware of this cheat being popular from time to time and decide to go peek into neriakc , BOOM player A pop on his head, GM ban stick is shaked and they do actualy verify or used to verify this quest. So this macro is considered an asking to be banned, that is what this post is all about, cheat but without being stupid. THIS IS A OLD MACRO reworked that lots of poeple got banned using it, its not only 10 person being banned, only from those i know more than 10 got banned from doing it lol.

If a GM want to ban some MQ2 warper, ghostkiller , he will take a shit load of time finding someone cheating without that person being reported at first, he has to go through many instance, many zone and look all around to find someone cheating. Sometime you get unlucky but you can keep going years without any problem if your carefull.

Any cheat may get you banned...... ( low risk unless you arent carefull)

Duping will get you banned....... ( hight risk )

Macroying this old old old cheat will get you banned ( high risk )

This forum is to post cheat, evaluate RISK using them, avoiding risk using them and to help out the newbie joining this forum. Sending them to be banned without them knowing its unacceptable.

Now the owner of the post added a nice msg over which is a good move....


So lets drop this topic and move on, lets just say this macro is high banning risk, poeple decide from it if they wanna use it or not but at least they are now warned. GM watching that quest from time to time......and this quest is well know from soe.....
 
If a GM want to ban some MQ2 warper, ghostkiller , he will take a shit load of time finding someone cheating without that person being reported at first, he has to go through many instance, many zone and look all around to find someone cheating. Sometime you get unlucky but you can keep going years without any problem if your carefull.
wait, so you're saying this is more dangerous than ghostkilling? ROFL
 
What a joke, you are trying to tell us that GM's cant ban people unless they catch them in the act? Thats what they have logs for bud. I had a friend who lost his account 3 months after he had last no-drop moved an item to an alt, and he hadnt used MQ since transfering the item out of fear of being banned.

Like I said before, posts like yours come and go, but that doesnt make them any less annoying or pointless. We all know that we can get caught and banned for the things found here, and if someone doesnt understand that, then odds are they probably deserve the banning.
 
Platpimp 3.0

Users who are viewing this thread

Back
Top
Cart