
Matenia
-
Posts
2232 -
Joined
-
Last visited
Reputation Activity
-
Matenia reacted to Bambo in Bambos Profile
die profile sind schon seit langem wieder online und bei deiner art weiß ich schon warum ich zu dir nicht freundlich war, meine preise update ich nicht weil es im forum verboten ist threads zu updaten ohne content zu updaten, das gilt für paid profile threads nunmal, augen auf im forum, danke
Lies doch mal was der Schmeisser noch am selben tag gepostet hat ?
-
Matenia got a reaction from Pudge in C# Variable in Lua.DoString() gives lua error
Why are you using @ in a non-multi-line string?
This isn't a problem with LuaDoString.
//next time take a look at your ingame Lua errors and you'll see what's actually appearing in the game and why it's a problem var name = "qq"; var subject = 123; var text = "1\n2\n3\n4\n5\n6"; Lua.LuaDoString("SendMail(\"" + name + "\", \"" + subject + "\", \"" + text + "\")"); // don't use @ in combination with \n otherwise at least double escape \n as \\n // also, don't mix ' with ", you're bound to run into issues with names containing ' eventually
-
Matenia got a reaction from Marsbar in C# Variable in Lua.DoString() gives lua error
Why are you using @ in a non-multi-line string?
This isn't a problem with LuaDoString.
//next time take a look at your ingame Lua errors and you'll see what's actually appearing in the game and why it's a problem var name = "qq"; var subject = 123; var text = "1\n2\n3\n4\n5\n6"; Lua.LuaDoString("SendMail(\"" + name + "\", \"" + subject + "\", \"" + text + "\")"); // don't use @ in combination with \n otherwise at least double escape \n as \\n // also, don't mix ' with ", you're bound to run into issues with names containing ' eventually
-
Matenia reacted to Droidz in How to cast revive once?
your code is illogical, mouseover is in wrobot API you don't need to write in memory manually, why do "o.Name == o.Name" ? Why blacklist corpse in blacklist for hostile unit? (and search corpse without check if corpse is in this blacklist).
It's nice to help, but this type of code can mislead users.
Code (not tested) with target should look like:
var revive = new Spell("Revive", false); if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !ObjectManager.Me.IsCast && revive.KnownSpell && revive.IsSpellUsable) { var corpse = ObjectManager.GetObjectWoWCorpse().Where(c => !wManager.wManagerSetting.IsBlackListed(c.Guid)).FirstOrDefault(); if (corpse != null && corpse.IsValid) { Interact.ClearTarget(); // or Interact.InteractGameObject(corpse.GetBaseAddress); revive.Launch(); Interact.InteractGameObject(corpse.GetBaseAddress); wManager.wManagerSetting.AddBlackList(corpse.Guid, 1000 * 60 * 10); } } with focus should look like:
var revive = new Spell("Revive", false); if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !ObjectManager.Me.IsCast && revive.KnownSpell && revive.IsSpellUsable) { var corpse = ObjectManager.GetObjectWoWCorpse().Where(c => !wManager.wManagerSetting.IsBlackListed(c.Guid)).FirstOrDefault(); if (corpse != null && corpse.IsValid) { var old = ObjectManager.Me.FocusGuid; ObjectManager.Me.FocusGuid = corpse.Guid; revive.Launch(true, true, false, "focus"); ObjectManager.Me.FocusGuid = old; wManager.wManagerSetting.AddBlackList(corpse.Guid, 1000 * 60 * 10); } }
-
Matenia got a reaction from Photogenic in How to cast revive once?
Use a timer you set when using SpellManager.CastSpellByName and add to the condiiton that the timer needs to be ready
Edit: Ideally you want one timer per unit guid you tried to rezz
-
Matenia reacted to Talamin in How to cast revive once?
Because you don´t have a cooldown on your revive ability and usefuls.waitiscast just wait until the Cast is done. So when the target don´t accept the ressurrection immediatly he get´s spammed over and over again. Therefore just use a timer for each target you already casted revive on, so it won´t spam revive on the same target again and again.
-
Matenia got a reaction from Photogenic in Improve dungeon pathing
PathFinder.OffMeshConnections.Add(new PathFinder.OffMeshConnection(new List<Vector3> { new Vector3(-861.2993, -3758.589, 19.47886, "None"), new Vector3(-849.3063, -3742.703, 22.49161, "None"), new Vector3(-842.8103, -3734.129, 19.89155, "None"), new Vector3(-849.7686, -3735.616, 19.88754, "None"), new Vector3(-848.3646, -3731.851, 21.27056, "None"), new Vector3(-843.2056, -3727.342, 25.23064, "None"), new Vector3(-839.3514, -3726.285, 26.32008, "None") }, (int) ContinentId.Kalimdor) { Type = PathFinder.OffMeshConnectionType.Bidirectional, Name = "Ratchet - Gazlowe", TryToUseEvenIfCanFindPathSuccess = true }); PathFinder.OffMeshConnections.Add(new PathFinder.OffMeshConnection(new List<Vector3> { new Vector3(1155.042, 182.7223, 3.134686, "None"), new Vector3(1157.968, 184.0907, 5.895848, "None"), new Vector3(1157.852, 185.0874, 6.79552, "None"), new Vector3(1169.146, 188.5145, 17.70432, "None"), new Vector3(1176.177, 183.1431, 21.6543, "None"), new Vector3(1174.764, 180.1774, 21.44643, "None"), new Vector3(1170.609, 182.9803, 23.67873, "None"), new Vector3(1167.625, 185.7788, 27.12425, "None"), new Vector3(1165.26, 188.2767, 28.77732, "None"), new Vector3(1161.465, 183.8654, 29.03481, "None"), new Vector3(1164.393, 176.3627, 31.69842, "None") }, (int) ContinentId.Kalimdor) { Type = PathFinder.OffMeshConnectionType.Bidirectional, Name = "Stonetalon - Big machine", TryToUseEvenIfCanFindPathSuccess = true }); PathFinder.OffMeshConnections.Add(new PathFinder.OffMeshConnection(new List<Vector3> { new Vector3(-9009.081, 851.679, 105.893, "None"), new Vector3(-9017.271, 864.8356, 109.8218, "None"), new Vector3(-9014.967, 882.9603, 112.9219, "None"), new Vector3(-8999.138, 890.7767, 115.9936, "None"), new Vector3(-8982.68, 880.2233, 119.937, "None"), new Vector3(-8982.612, 866.5609, 123.3268, "None"), new Vector3(-8992.165, 860.2961, 126.6532, "None"), new Vector3(-9001.312, 864.4201, 129.772, "None"), new Vector3(-9013.052, 873.2303, 132.0581, "None"), new Vector3(-9007.667, 877.3668, 135.9138, "None"), new Vector3(-9003.198, 874.1686, 139.3298, "None"), new Vector3(-9004.052, 868.6579, 142.6572, "None"), new Vector3(-9009.047, 867.0392, 145.7849, "None"), new Vector3(-9013.107, 871.0745, 148.6166, "None"), new Vector3(-9016.262, 884.7032, 29.6207, "None") }, (int) ContinentId.Azeroth) { Type = PathFinder.OffMeshConnectionType.Bidirectional, Name = "SW Mage Tower", TryToUseEvenIfCanFindPathSuccess = true });
-
Matenia got a reaction from Pudge in Manipulations in character selection menu
That should work. Lua.LuaDoString takes some extra arguments like "notInGame" or something, so maybe try those
-
Matenia got a reaction from Pudge in Manipulations in character selection menu
Extract GlueXML from your client's MPQ find out what everything is called and then use those names.
-
Matenia got a reaction from thebk150 in Calculate distance between totem and player target
Find totem in objectmanager by name or entry, then confirm it's your pet (IsMyPet property) and check unit.Position.DistanceTo(ObjectManager.Target.Position) <= 30
-
Matenia got a reaction from TheSmokie in Warmane Icecrown Bot Detection
Dude, you're completely uninformed. First of, it doesn't matter what right they have. Second, whether they or Blizzard have that right would make no difference. Warden is part of Wow's binary. You're checking part of the memory section that the process itself occupies, not scanning RAM at random. This is also how CRC checks work.
They aren't scanning your system at random either. The way this check works is that the client can be patched to execute Lua code as "secure" rather than tainted, the way it normally is. The client usually checks (in itself) if the function is allowed to be executed (for example, casting a spell from code can only be done using secure action buttons in a certain way, or macros). The server never knows if a spell was sent to it "legitimately".
They execute Lua code on your client and hook some functions that you would normally use. So if you cast a spell in a way that's against the rules, it will now notify them.
-
Matenia got a reaction from freaq in Bot wont start - error
You're loading a grinder profile in the quester product
-
Matenia got a reaction from TheSmokie in Bot wont start - error
You're loading a grinder profile in the quester product
-
-
Matenia reacted to Droidz in Need a bot for wow classic official servers
still no answer...
You're talking nonsense. VM can protect your data if you run unsafe program, it is useless to reply here with VM, (in case where you use VPN with update webbroser and that you don't accept external application and script) I can do nothing with VPN ip (exept if found fail on your VPN server, in this case I can get your real IP and get access to all your computer/VM if I found fail in your router/OS, but I am not the FBI ^^)
I've asked you for the links more than 10 times ...
@Jeeper has buy it, but he have got nothing, you just asked him to pay again.
I wait reply for:
for: https://wrobot.eu/forums/topic/11808-need-a-bot-for-wow-classic-official-servers/?do=findComment&comment=57432
for (I ask this more than 10 times):
I'll send your phone number, born date, address and all information that I have about you at @jeppe010 (he probably has a service with it's bank to help you with this type of litige, and I send these info to you to see that I am no lie), I'll remove all link to your website and close this thread.
if someone have problem with this scammer
Classic wow bot classicwowbot classicwowbot.com www.classicwowbot.com www.classicwowbot.com/reviews [email protected] #Classicwowbot #ClassicWoWBotChallenge top wow accounts topwowaccounts www.topwowaccounts.com topwowaccounts.com Yakub wow bot [email protected] Send me private message, I have information about him I can help you.
EDIT:
I add links:
- https://www.epicnpc.com/threads/scammed-me-of-100euro.1591237/
- https://www.ownedcore.com/forums/wow-classic/wow-classic-bots-programs/888216-classicwowbot-com-scam.html
-
Matenia reacted to catrix555 in Need a bot for wow classic official servers
if you google for classicwowbot scam you can find this thread... good job google ?
Some more words for Google
classicwowbot fake
classicwowbot scam
classicwowbot bullshit
classicwowbot not working
classicwowbot.com scam
www.classicwowbot.com scam
-
Matenia got a reaction from TheSmokie in Need a bot for wow classic official servers
Our guy Yakub over here still trying to break even after wasting his money on UI development courses.
@Bambo said it earlier, but if Yakub had actually spent the time he's wasting attmepting to scam people just developing bot profiles for wRobot or retail bots, he'd probably have made much more money by now.
Hey Yakub, if you're worried about making rent this month, don't worry. Just send me a PM on here. I feel so sorry for you, I'll help you out with the money I've made from Classic since release.
To backup Droidz: If you're accepting PayPal as a payment method, I will literally buy your bot for 5x it's price right now.
Of course as a secure business transaction and not friends and family ?
-
Matenia reacted to Droidz in Need a bot for wow classic official servers
You are unbelievable! In 10/15 years of forum administration I've never seen anything like this.
I get nothing out of this. But you have scammed (and are trying to scam new) WRobot users.
To solve this story you just have to give me access for a few minutes (or even a TeamViewer access). If it really exists I'll advertise you with a banner for 1 year for free.
The only person who looks not credible here is you, do you really think anyone can believe your stories? The only chance you have is that my english is bad.
Can you answers to these questions:
ty
I'm waiting for proof of what you say.
You forget him : https://wrobot.eu/forums/topic/11808-need-a-bot-for-wow-classic-official-servers/?do=findComment&comment=57411
Accept Paypal or safe payment method and I buy your "bot" instantly.
Stop cry, you came here by yourself. I would like users of this "bot" come here to give more details.
Your bot, 2019:
2020, new ui, all time few options:
And WRobot:
Look what we can do with real bot 5 years ago (this can help you for your next scam): https://www.youtube.com/watch?v=mSM1U1FmdbM
Good story... "very careful due to Blizzard" but he uses wow in the bot name (it is protected name)? In bot name he uses classic but is is bot for legion/bfa?
In the forum you have 4 posts in 2 hours, but only 75 threads in 3 years? And you say "WoW classic by some retard *rofl*, just because it has classic in his name, doesn't mean it's made ONLY for classic silly!" to summarize you said that the bot is always called like that and that this site has always existed (which explains the 3 years of the forum) tell me why your domain exist only since 2 weeks ( Created on 2020-03-23 > http://whois.domaintools.com/classicwowbot.com )
Finally, I'm sure it is you in the photo (if you want I can told your error and how I found you to not reproduct this error), I have all the informations about you, you are a programmer (IOS and Android application, you have an Apple developer license that's for that you are able to make the video with your iPhone).
What is sad is that you have to scam people to make money and you cannot make money from your creations (make Windows/IOS UI, website, bank account, video, ...for you scam take probably few days). And scam people at this time with current world problems, I wonder how you can sleep properly.
What will happen now. Most of the people that you have / will scam will find this page on google, contact me, I will put them in relation and give your informations and they can file a complaint against you.
-
Matenia reacted to Yakub in Need a bot for wow classic official servers
@Bambo
posted on 5th of March 2020, in this very thread and yet you're running around free, scamming people just because you support their product.
Are you really trying to manipulate people with that scamming background of yours? On a serious note, let's cut the crap, aren't you a bit ashamed of yourself?!
-
Matenia reacted to Bambo in Need a bot for wow classic official servers
After this shitstorm in this thread no sane person would buy your product lol
-
Matenia got a reaction from TheSmokie in Need a bot for wow classic official servers
This guy who is still pretending it's not his bot (even though he instantly had access to my test to their form - because he's apparently best buds with the "real admin") actually has so little experience in developing actual bots for WoW that he doesn't even understand how Blizzard's detection works on Windows processes.
I love how he dismissed possible detection vectors that would be instantly picked up on a public bot because he doesn't even understand them.
Just goes to show the dude hasn't spent more than 5 minutes on figuring out the changes that 7.3.5 brought in terms of their updated protection.
If the bot were real, you could've allowed Droidz a 30 minute trial license and gotten positive responses despite advertising your product on a website you have no business on. But it's (real) not and you thinking that you can just copy or steal source code that needs to read and write memory from and to several constantly changing binaries is proof of that if nothing else.
I admit I was wrong about the form not submitting intially. But everything still stands. You're sending reviews you clearly didn't implement yourself to a third party domain and there's good reasons my browser extensions recognized that as an easy, even if the other site is adjusted for CORS policy.
-
Matenia reacted to Droidz in Need a bot for wow classic official servers
On this point I agree with you, my english is poor (like the French on your reviews page).
I didn't ask anyone to help me. It is you that came here.
I dedicated WRobot to Wow private servers and I stopped WRobot support for official servers because WRobot was not intended to work with the anti-cheat updates that Blizzard has made. But it was the last bot of it generation alive, and one of the bot with the fewest banwaves during those years of support of official servers.
- According to my experience while watching the videos your bot is easy to detect (Icon, window name, ...).
- It is easy to make fake video and a fake bot site.
- The reviews in French is poorly translated (I'm French, a Frenchman does not write like that).
- Comments on YouTube are all made with blank accounts.
- Your domain name, your accounts on various forums/sites are all 1 week old.
- You don't accept PayPal (even if you say soon you won't), but only bank transfers and Bitcoin.
- You say it's not your bot and that you have no partnership, but you defend him as if it were your own.
- No public chat/forum or thread on popular forum (I've never seen a real public bot without that).
I won't answer anymore, and I'll leave this post as it is, people who will read it will be able to make up their own mind.
-
Matenia got a reaction from TheSmokie in Need a bot for wow classic official servers
This guy still thinks SEO works by reposting the same link over and over on the same URI. What is this, 2005?
I sure hope Google does actually index it, so everyone can see what a C class scam this guy.
Also insulting wRobot... it's not even a competitor. It's a private server bot. It can't get your WoW account banned because it's not for retail. But at least it works, unlike the review page that's full of fake reviews. I'm surprised they put some 4 star reviews in there now. Last I checked they didn't have them. You can tell it was quickly thrown together because they couldn't even be bothered to make the missing star look like it fits the rest ?
Keep in mind, he's saying other people are toxic and overwhelming him, yet he came onto this site and attacked the owner of a website that he chose to advertise his product on. Calling him a poor faggot with no life.
Look at this garbage:
Submission form is also completely fake:
Success message hard coded instead of a server response, full of javascript serialization bugs. As if not being able to select the amount of stars, but being asked to put them in as text wasn't a clue enough how fake this is, the form doesn't have a target either. So it would have to be submitted through javascript.
Also says it requires recaptcha, but doesn't actually display one.
Here is what happens when you try to submit the form:
It's just tracking data. If you allow ads and tracking, it simulates a form submit.
Also sends some data to secureserver.net's API, which as far as I can tell is more or less a public API beloging to GoDaddy.
There's no reason they should send an XHR request to another domain. Basically anyone reaching this from Google, wondering if that bot is legit - no it's a huge scam and you'd be better off investing in an EWT or LuaBox based bot for retail Classic WoW. They have become fairly advanced and a lot of people are selling advanced bots using the Lua unlocker's API. It may seem a bit pricey, but it's well worth it and veeeeery scure.
-
Matenia got a reaction from Talamin in Need a bot for wow classic official servers
This guy still thinks SEO works by reposting the same link over and over on the same URI. What is this, 2005?
I sure hope Google does actually index it, so everyone can see what a C class scam this guy.
Also insulting wRobot... it's not even a competitor. It's a private server bot. It can't get your WoW account banned because it's not for retail. But at least it works, unlike the review page that's full of fake reviews. I'm surprised they put some 4 star reviews in there now. Last I checked they didn't have them. You can tell it was quickly thrown together because they couldn't even be bothered to make the missing star look like it fits the rest ?
Keep in mind, he's saying other people are toxic and overwhelming him, yet he came onto this site and attacked the owner of a website that he chose to advertise his product on. Calling him a poor faggot with no life.
Look at this garbage:
Submission form is also completely fake:
Success message hard coded instead of a server response, full of javascript serialization bugs. As if not being able to select the amount of stars, but being asked to put them in as text wasn't a clue enough how fake this is, the form doesn't have a target either. So it would have to be submitted through javascript.
Also says it requires recaptcha, but doesn't actually display one.
Here is what happens when you try to submit the form:
It's just tracking data. If you allow ads and tracking, it simulates a form submit.
Also sends some data to secureserver.net's API, which as far as I can tell is more or less a public API beloging to GoDaddy.
There's no reason they should send an XHR request to another domain. Basically anyone reaching this from Google, wondering if that bot is legit - no it's a huge scam and you'd be better off investing in an EWT or LuaBox based bot for retail Classic WoW. They have become fairly advanced and a lot of people are selling advanced bots using the Lua unlocker's API. It may seem a bit pricey, but it's well worth it and veeeeery scure.
-
Matenia reacted to Ordush in Need a bot for wow classic official servers
I just saved it to the webcrawler too ?
https://web.archive.org/save/https://wrobot.eu/forums/topic/11808-need-a-bot-for-wow-classic-official-servers/