Christmas Presents

Jdnwaco

Active Member
Is there a way to make a small script that will click the Xmas presents and loot the window? After 5 hours last night doing it manually trying to acquire one of everything I figured it was time to ask for help here.

Plus I'd like to get about 40 Monstrous Snowmen and recreate my favorite Calvin and Hobbes Xmas theme in my house.
 

djvj

Active Member
I used my nostromo to do that. Took all of 10 secs to make a script that did a left then right click every .05 secs and looped. I could fill up all my bags in under a half hour.
 

don'tdoit

Active Member
of course... anything is possible, didn't you take the red pill?

Code:
function main()
{
	Pawn[Gift-Wrapped Weapon]:Face
	waitframe
	Pawn[Gift-Wrapped Weapon]:DoubleClick
	do
	{
		waitframe
	}
	while !${Me.IsLooting}
	Loot:LootAll
}
obviously, this is a very simple example, but it does work to face, use, and then loot from a gift on the ground (in this case the one named "Gift-Wrapped Weapon").

Take that. But don't just use it. Learn from it.
 

Kazman420

Active Member
I took the lazy man approach and wrote one to use regardless of the gifts name. The downside is you better make sure the closest pawn to you is the package you want to farm.

Code:
function main()
{
	do
	{
		Pawn[Clickable]:DoubleClick
		Wait 60
		Loot:LootAll
	}
	while "${Me.InventorySlotsOpen} > 0"
}
However, I reccomend listening to Don'tdoit and improving upon the examples given and making your own. For example with my script, if there is heavy lag you may run into problems with it skipping out on a loot window. I havn't run into that situation yet, and I've filled up many bags but its certianly possible given the way I wrote it. There are lots of different ways to write a script that does what you want. Looping a simple "Mouse:RightClick" then "Mouse:LeftClick" would even get the job done provided you turned on the in-game option that puts the loot window at your cursor =)
 

don'tdoit

Active Member
DrmChld, what you want to do is easy. In fact, you used one of the words you'll need in your last post. Take a look at other scripts and see how they loop.

After you get that, you can also take another script you find here and adapt it (easily) to delete the presents you don't want while keeping the ones you do.
 
Top Bottom