Vilket hud är det du använder? sjukt najs vill ha den :;)
Printable View
Vilket hud är det du använder? sjukt najs vill ha den :;)
http://i.imgur.com/z5Xy5jX.jpg
Running the vampire script on the lower sorcerer was no problem.
http://i.imgur.com/U85afuM.jpg
Also using it on the stronger sorcerer since it died a few times at mooh'tahs. I actually only died once while getting my vote points there, but since it has started dieing more so I'm using the safer script till I have a better shot at glooth bandits. There the exp and profit is good enough that dieing a few times at the lower levels easily is worth it, but at mooh'tahs it isn't. However, I keep looting fewer bohs than I expect here, hopefully the wiki wasn't wrong on their drop rate.
http://i.imgur.com/jC9OvUR.jpg
Apes -2. Exp is the same as -2 pretty much but the ratio of merlkins is higher so theres a bigger chance of getting a banana staff. On the other hand merlkins give the most exp so perhaps that means that my total number of apes/h is lower which means fewer ape furs.
http://i.imgur.com/NZd0lKT.jpg
Apes surface. Again, pretty much the same exp. However, this time the ratio of merlkins is lower than the other two scripts. My overall impression of these spawns is that all floors are pretty much the same and I'll probably write a lua thats start one randomly. Even though you could hunt each of the different floors with three different characters at the same time, I don't think that would be worth it as it would surely bring down the price of ape furs.
http://i.imgur.com/rpPuCep.jpg
Typical profits at the old water elemental spawn. Most people hunt here for exp soon after 50, but its crazy profits if you're over 100. 85% of the loot is made up of gold, platinums and gems which the script sells to the local npc so I don't really have to worry about selling loot or saturating the market. Exp is a bit low on the ss though so there probably were someone else there for a while. That's the bad thing about most of the really good spawns. Ideally you should be botting them during the night.
http://i.imgur.com/FzqcMWK.jpg
Shorter session on glooth bandits. The screenshot taker keeps failing me here. I actually decided to fix my hud so that it doesn't count the sessions time and stamina usage while you're offline. This way I should be able to log in in the morning and snap a screen after being offline for a few hours without this corrupting the stats.
Already happend on my world, ape fur was 5k now 3-4k, but still worth it. :D
I love to see your screenshots and read how you relate it, wonderful, and yeah fucking screenshot taker is a pain the ass.
Today I scripted the Nargor quest. Making it 100% afk didn't seem worth it, but it alerts whenever user input is needed and that quest takes a while so the script will save me a ton of time since I intend to hunt pirates on at least two of my four new knights, and being able to do the task will surely help with the profits.
http://i.imgur.com/ZzVc9pF.jpg
http://i.imgur.com/HyNK8xo.jpg
I also made a Nargor script. See that it says "[EK] Nargor Pirates" on the HUD? I changed the HUD so that other scripts can use the often overlooked Signals library to add a script name to the hud. It's also possible to add a script author:
lua code:
wait(1000)
Signal.Send("script name", "[EK] Nargor Pirates")
Signal.Send("script author", "shAdOwArt")
The wait is needed since otherwise the script may send the signal before the hud has started running. Allthough you can also send the signal at some label (but not the first one since it may execute almost instantly!). This is how it looks with an author:
And yeah I made a Talahu script too, but there seems to be something broken with the pitfalls there. Xenobot can't walk down into them without a lot of custom lua code. And I couldn't be bothered with that since there were other people in the spawn. Quite a lot of them actually. I had expected it to be empty since its honestly not that good of a spot and it requires quite a long prequest.
http://i.imgur.com/opylCvo.png
http://i.imgur.com/lifkBWi.png
All my 4 new Knights are now level 50 and ready for Apes (you can hunt all floors on level 50 without any problems (Solid recommending level 100 for -2 is a massive overkill, even though it makes sense to overlabel your scripts when you sell them). These guys are on two different worlds than my other knight though, so I guess Banana Staff might not go for 50k there. Maybe I should add character specific market price lists to the hud now that I'm active on more worlds.
I also changed the levelup screenshot taker to use a module instead of a proxy for regular level-ups, and so far I haven't had any random fuck-ups with it:
lua code:
GenericTextMessageProxy.OnReceive("Skill Level Screenshotter", function(_, msg)
-- Skills
local skill, level = msg:match("You advanced to (.*) level (%d+)")
if skill and level then
wait(400)
screenshot(Self.Name().."_"..skill.."_"..level)
return
end
end)
local oldLevel = Self.Level()
Module("level-up screenshotter", function(module)
local newLevel = Self.Level()
if newLevel == oldLevel + 1 then
screenshot(Self.Name().."_"..newLevel)
end
oldLevel = newLevel
module:Delay(1000)
end)
Finally, I also made a python script to auto crop and blur my level up screenshots:
(Depends on PIL/pillow. "pip install pillow" if you have pip)
python code:
#!C:/Python27/python
from PIL import Image, ImageFilter
import glob,os,string
output_dir = "processed"
if not os.path.exists(output_dir):
os.makedirs(output_dir)
# The interesting part of the screen.
# Needs to be configured for your screen!
x_min = 0
x_max = 1738
y_min = 0
y_max = 645
interesting_box = (x_min, y_min, x_max, y_max)
# The part of the screen where the name is (before cropping).
# Remember that the name changes position when you mount!
# The area needs to cover both possibilities.
blur_x_min = 805
blur_x_max = 925
blur_y_min = 260
blur_y_max = 290
blur_box = (blur_x_min, blur_y_min, blur_x_max, blur_y_max)
image_names = glob.glob("*.bmp")
# Repeatedly blurs the image
def blur_image(image):
for i in xrange(10):
image = image.filter(ImageFilter.BLUR)
return image
# Obfuscate the character name so that it isnt directly visible in the file name
def obfuscate(name):
# With-held for obvious reasons
return name
def process_image(image_name):
# Get a representation of the image
image = Image.open(image_name)
# Blur away the central name part
to_be_blured_part = image.crop(blur_box)
blured_part = blur_image(to_be_blured_part)
image.paste(blured_part, blur_box)
# Then cut away all uninteresting parts
cropped_image = image.crop(interesting_box)
# Obfuscate the character name
name_parts = image_name.split("_", 1)
char_name = name_parts[0]
obfuscated_name = obfuscate(char_name)
# Finally, save the processed image
cropped_image.save("%s\\%s_%s" % (output_dir, obfuscated_name, name_parts[1]))
for image_name in image_names:
# Dont process death screenshots
# Got "DEATH" in your name? Sucks to be you.
if "_" in image_name and not "DEATH" in image_name and not "logout" in image_name:
process_image(image_name)
# Delete the source, regardless of whether we processed it or not
if not "logout" in image_name:
os.remove(image_name)
Sadly I noticed that if you stand on something when you level-up the positioning of your name changes so I had to manually blur this one:
http://i.imgur.com/6q4U9az.jpg
I guess I could always remove creatures names, but I like seeing the health bars of the creatures.
For god sake lol, you are increible! Pirates you should hunt on first and second floor only, thats are the floors that I hunt with my Knights and is perfect. ;)
I have too Banuta Surface but I have a problem and hope you can help me with it XD sometimes when the char reach the label StartHunt since there are too many Sibang and Merklin the chars keep following the mob and there is a point that the char is like 300 sqm far away from the point of Walker, so my char stucks there, hope I explain myself :p
Shadowart pimp of apes. :cool:
Finally a fucking lua screenshot taker that seems reliable, Ima try it right now! :D
Nice thread, I enjoy it every morning that I wake and see that you posted some screenshots. :)
I mostly hunt the second and third floors with minor forays into the first and fourth floors. Going back through your Nargor screens it seems like I'm getting slightly more exp/h (60k vs 55k) so unless you were exactly level 50 (I'm level 60) I'm inclined to think that my path is a bit better. I'm also avoiding the hardest areas so I do think that more exp equals more profit in this case. The first floor in general just seemed so empty.
I surrounded the entire hunting area in a big special area rectangle. Sometimes it takes a while to kill a Sibang that runs back and forth over the edge of the area, but that's actually pretty rare. I also run a module that turns on the targeters ignoremode when supplies are low so I don't run the risk over never getting to the leave label. And I made a point of spending a lot of time on the higher levels of the buildings since the monsters can't run as far there (and that's there the merlkins are too).
Thanks.Quote:
Nice thread, I enjoy it every morning that I wake and see that you posted some screenshots.
Nice to see a scripter running thread ;) this is the other side of coin, also it is nice to see some specs you talk about that normal user will not notice, or don't care about.
With 5 accounts and 9 characters I'm racking up a bit too many screenshots. I think I'll have to start filter a bit more in the future. Anyways, here we go!
First pirate task done!
Black-red summoner is back at minos and hasn't died yet. I think I'll be able to stay here till I'm ready for glooths now. I also had to move away from the vampires for another reason; with two characters there I was tanking the vampire dust prices too much and Orange noble has nowhere else to go so this one had to leave.
Blue commoner keeps making sick profit at water elementals. However, I did in fact try to move her around a little trying to find a spot where fewer manual players pass by. However, I didn't find anything good. Ice witch temple and drefia necromancers were taken by other bots and ancient ruins tomb sucked balls. I could have added some more creature products to the loot list, but it wouldn't had been enough, and I don't want to bother selling that shit anyways.
http://i.imgur.com/K7nybdT.jpgBlack knight, yellow druid, red barbarian and green witch keep making nice profit on Apes. However, tomorrow I'm moving two of them away in order to preserve the ape fur prices. I tried doing the nargor quest on black knight today, but all the necessary items weren't available in the market on that world. The back-up alternative is going back to mutated humans.
http://i.imgur.com/uGFlVxE.png
http://i.imgur.com/tES8vZm.png
http://i.imgur.com/Rk91xVc.png
http://i.imgur.com/eZERnwh.jpg
http://i.imgur.com/gdRLy3w.jpg
http://i.imgur.com/PlfQ3Ik.jpg
http://i.imgur.com/PlfQ3Ik.jpg
http://i.imgur.com/4Rn0sNt.jpg
I tried calculating how long I've been botting my mages for. Turns out the glooth bandit mage has been going for 5 months and one week while the other three have been playing for three months and two weeks (the ~135ish one definitely hasn't been able to keep her stamina down though). Last time around it took seven months to get to 300. I think I'm going to beat that this time around.
I see that your screenshot taker is working for you.... For me no XD, I think I know what it is but let me be sure, you use OxTools or WindAddons for CPU Saver? I do so I think thats the problem.
Lol, I know that feel, is the worst when your folder of Screenshot got spam of PLAYER DEATH PRE-PLAYER DEATH
Keep going with the Pirate task, they are wonderful ;)
Good choice about trying to find a spot, water elemental is a perfect balance for exp and profit however ALOT of noobs go there and if you are lvl 100+ they automatically report you, sucks. Well since you are script you could try Muggy Plains with Avas/strikes, DLs, Hrodmir Quaras.
Lol, Shadowart the slayer of apes, at least here in my world I dont know why but people is always looking ape furs and nobody goes there so the only good price ape fur are mines :p you could try Terramites while waiting for Nargor, Barbarians, Magicians.
Cheers for your thread, is just amazing. :cool:
http://i.imgur.com/YggYXTh.png
Two more pirate hunters have joined the fray!
http://i.imgur.com/SUNMYOR.png
http://i.imgur.com/Cxnmwn9.jpg
Another try at finding a different spawn for Blue Commoner. Some maths gives me breakeven as a better estimate for Hidden Lizards. However, that ain't good enough for me. I might give it another try later though. Tomorrow I think I'll just go to the other water elemental spawn.
http://i.imgur.com/iPfK13Q.jpg
http://i.imgur.com/T0MwIxn.jpg
http://i.imgur.com/bh5yUnd.png
Black Summoner and Orange Noble are exping nicely.
http://i.imgur.com/ddcBYNz.png
Tomorrow I'm going to remove the regular cave exit from the script and force it to always exit via the teleporter. Getting stuck at the 1sqm wide bridge after the regular exit is a big waste of stamina and time. In order to be able to stay as long as possible in the cave I also reworked the ignore system so that you an set different "leave" and "ignore targets below" values for supplies.
http://i.imgur.com/IlznuzA.png
Some people are so gullible... The chat replier actually works surprisingly well (as in maybe 30% of the time), perhaps because 90% of all people just say something like "hi. how long?" and then I tell them some made up large number. Allthough it never works when they were in the cave first...
Pirate hunting is coming along nicely. It takes around 10 hours to do one task and the item you get goes for 100k-500k. That's crazy considering I already get 10k-20k/h from the regular loot.
Magic levels take sooo long.
I decided to powerlevel this character since next months premium has already been secured (its on the same account as the Mooh'tah hunter). I think I could get the same exp with better profits at Mutated Humans. However, most of the time there's someone else in that spawn so in practice this one is faster. Profits should also go up over time considering I'm pretty low for this spawn.
Changed to a different Mooh'tah config since I'm higher level now and can handle hunting more aggressively. Exp went up around ~100k/h. Taking refill time into account this is probably the same as I would get at Souleaters, though I think its still a little worse inside the actual spawn.
Two more Lissy's. Sold the shirt fort 300k both times.
Moved Blue Commoner to the new water elementals. Shirmps adds another 15k/h to the profit, on top on what the hud displays.
Exp keep being nice and profits have gotten a little better. I probably had bad luck during my first test run.
Couldn't quite sustain 600k/h over longer sessions. But at least turning on the hardcore mode has improved the profits quite a bit.
I'm not able to bot during the night anymore, so I have to suffer more interferences in the glooth bandit spawn than I used to. Today there even was a fucking paladin there. Wtf? I did some really cool stuff with the lurer in the large rooms though which I think improved the safety of the script quite drastically. I'm gonna send Black Summoner there as soon as she hits 200.
Definitely inspired by Garkstal from windbot. Imo this style of forced circling is a lot safer than letting the elastic targeter do its thing. There's a whole bunch of pitfalls that you have to look out for when implementing this on Xeno though. As a bonus I think it also tends to keep the enemies more bunched up so that your spells do more damage.
I've also pulled down the download links for all my level 100+ scripts. Since I'm so active now I'm considering re-opening my paid thread, but I haven't decided yet.
Lol, 3 Lethal Lissy XD I have killed around 8-12 bosses and only 1 Lethal. Nice imgs, as always shadow!
About your script of arena, it enter to the little rooms of Mutated Tigers? And it has anti trapper? XD I died using SS script because some guy trapped me inside of this little room and the bot didnt opened the gate. Sad :(
Come on what are you waiting for!!!!!!!!!!!!
Shadowart paid thread. I can see the future, a fucking success :rolleyes:
Btw I saw somewhere you are using Discord, if you dont mind can you give me your tag, or add me? :p
Sargul#9152
Nah anti-trap for the tiger rooms, hadn't thought of that possibility. Nor have I seen a single player in the spawn since I started. I think I'd do anti-trap like this:
lua code:
-- TODO: Figure out the real door positions.
local dorPoses =
{
{21321, 43242, 4324},
{21321, 43242, 4324},
{21321, 43242, 4324},
{21321, 43242, 4324},
{21321, 43242, 4324},
}
Module("Anti-Tiger Trap", function(module)
if Walker.IsStuck() and Self.TargetID() == 0 then
for _, pos in ipairs(doorPoses) do
if Self.Position().z == pos[3] and Self.DistanceFromPositioN(unpack(pos)) <= 7 then
Self.UseDoor(unpack(pos))
wait(1000)
end
end
end
module:Delay(1000)
end)
Edit: Is the syntax highlighter broken?
Added you on Discord.
Lol, and you dont want to make a paid thread script, is enough to see your knowledge.
Just do it!
Nice thread!
Are you using ur own pirate script or someone elses? If ur using ur own, is it available for the public?
Thanks
I'll be reopening my paid thread soon. Then that, some other new stuff and some more old stuff that have temporarily removed will show up.Quote:
Looking forward to it! Ur scripts are AMAZING!
Had a bunch of kicks today. At one time all my mages died at same time :(
But then I had some damn crazy loot luck at Glooth Bandits afterwards, so that was nice:
http://i.imgur.com/6wH04Ce.png
My paid thread is open again. Around half the scripts are new, and half are old ones which I've put a price tag on. I know a bunch of great EK spawns that have no Xeno scripts atm. Sadly my EKs are all way too low level to script them... My highest EK is going to go the Arena -> Bog Raiders -> Sea Serpents route to powerlevel real hard until I'm able to make the scripts I really want to.
Thats is why I dont have mages, they are like a glass.
Happy to read your luck in glooth bandits. :D
Well if your EKs are low, PG them with your own scripts! :cool:
Just keep in mind that everyone knows its the best mage spot in the game for solo hunting (at least below level 400). The 300 vote points requirements keeps the number of players with access manageable, but you'll still have to stick to somewhat odd times if you want to bot there.
Kk thaks a lot for the info! By odd i guess you mean people botting/luring/reporting right? But ohwell, guess imma take some risk or just alternate the use of your script with some other (ido which script would the other be tbh, if you could advice me would be nice hehe)
The Glooth Bandit is the sweetest spot as shadowart is saying, but it is also the easiest one to make a deadly trap on. It is a great place to bot if you are at the computer doing some other stuff though. But if people are coming to the spawn you better watch out when exiting the teleport to resupply...
***double post
http://i.imgur.com/8DStrq9.jpg
Some people go to certain extents to kill you though... This is a beautiful trap - I give them that.
Depends a bit on what you want. Lizard City, Edron Heroes and Oramond West (prismatic rings and prismatic necklaces needed at that level) are nice exp though. All are popular spots though, possibly more popular than Glooth Bandits, especially the first two. Quara spawns like Calassa and the Grotto tends be decent if you want to be left alone but can't really compare stats-wise. Maybe Demons if you want profit, or the south Bandit spawn.
PSA: September and March are the months of the Colors of Magic world change. This means that Ice Cubes are expensive. Even though there's still a while before the vote there's already plenty of buy offers for 1k each on my world. This means that Crystal Spiders and Ice Golems are even more profitable than normally. Of course the Crystal Spider spawns might be crowded, but if you have a low level Sorcerer you can get some extra nice profit if you stick it in Nibelor -1 or Ice Witch Temple -1.
(Profit would e 11-12k/h with Ice Cubes going for their NPC price).
well... so this means maybe even frosts will not be that horrible waste ;)