Register for your free account! | Forgot your password?

You last visited: Today at 16:56

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



GW1 Bots working in July 2017

Discussion on GW1 Bots working in July 2017 within the GW Exploits, Hacks, Bots, Tools & Macros forum part of the Guild Wars category.

Reply
 
Old 12/30/2017, 12:55   #931


 
Mia Forever's Avatar
 
elite*gold: 16
The Black Market: 110/0/0
Join Date: Apr 2016
Posts: 233
Received Thanks: 292
Exclamation WARNING PISHING BACK HERE

WARNING


I warn, my brother are download a file on GR (and now is here in EPVP) and he lost all the resources
+700A.

check the files because there is phishing !!!!!

phishing = he retrieves your password / login , with a recovery file and it steals you


-I work on this GUY who steals , believe me he will suffer and I'll post his screen before 2018, I already have some information.

warn you he is among us, but I can not target him yet, that will come


PLEASURE MIA <3
Mia Forever is offline  
Thanks
1 User
Old 12/30/2017, 12:59   #932
 
elite*gold: 0
Join Date: Dec 2017
Posts: 64
Received Thanks: 2
Hi all. Who knows how i can get more packets from Guild Wars? I need to do more functions.
Stary Pen' is offline  
Old 12/30/2017, 15:06   #933
 
elite*gold: 0
Join Date: May 2014
Posts: 269
Received Thanks: 320
Quote:
Originally Posted by calypso974fire View Post
You need to make a loop to go thought the inventory.

You can either make one specific or add the function to the ident or sell function.

My advice is to make à specific func with it's own loop.

For each item, compare the model id of the item to the model id of the tonic and if true, use destroyitem2 with the itemid as parameter.
Sorry but this is wrong.
SendPacket(0x8, 0x63, $aItemID) is correct, so DestroyItem3() should work.
SHOULD

I think he has this ... uhm APi-"fix" ^^
Code:
;~ Description: Internal use only.
Func SendPacket($aSize, $aHeader, $aParam1 = 0, $aParam2 = 0, $aParam3 = 0, $aParam4 = 0, $aParam5 = 0, $aParam6 = 0, $aParam7 = 0, $aParam8 = 0, $aParam9 = 0, $aParam10 = 0)
	If GetAgentExists(-2) Then
		DllStructSetData($mPacket, 2, $aSize)
		DllStructSetData($mPacket, 3, $aHeader + 1)
		DllStructSetData($mPacket, 4, $aParam1)
		DllStructSetData($mPacket, 5, $aParam2)
		DllStructSetData($mPacket, 6, $aParam3)
		DllStructSetData($mPacket, 7, $aParam4)
		DllStructSetData($mPacket, 8, $aParam5)
		DllStructSetData($mPacket, 9, $aParam6)
		DllStructSetData($mPacket, 10, $aParam7)
		DllStructSetData($mPacket, 11, $aParam8)
		DllStructSetData($mPacket, 12, $aParam9)
		DllStructSetData($mPacket, 13, $aParam10)
		Enqueue($mPacketPtr, 52)
		Return True
	Else
		Return False
	EndIf
EndFunc   ;==>SendPacket
Solution? Get an Up-to-Date-Version of GWA2/gwAPI/whatever!
Sry for not giving specific Infos for a quick&dirty workaround for that Problem!
DerMoench14 is offline  
Thanks
1 User
Old 12/30/2017, 15:07   #934
 
ytix's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 38
Received Thanks: 5
Quote:
Originally Posted by calypso974fire View Post
You need to make a loop to go thought the inventory.

You can either make one specific or add the function to the ident or sell function.

My advice is to make à specific func with it's own loop.

For each item, compare the model id of the item to the model id of the tonic and if true, use destroyitem2 with the itemid as parameter.
When I use destroyitem2 all I get is crash. Can you check with your vat bible and see if SendPacket hex values match?
ytix is offline  
Old 12/30/2017, 21:35   #935
 
elite*gold: 0
Join Date: Sep 2017
Posts: 30
Received Thanks: 0
So I was looking at the kilroy bot and i think i found the part that governs what the bot sells or not but I am not sure how to read it. So like with my previous question, would it be too hard to keep the blue armors, do i need to do an array like the previous suggestion or could i just filter out the blue rarity somehow?

lyscir is offline  
Old 12/30/2017, 23:12   #936
 
ytix's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 38
Received Thanks: 5
Quote:
Originally Posted by lyscir View Post
So I was looking at the kilroy bot and i think i found the part that governs what the bot sells or not but I am not sure how to read it. So like with my previous question, would it be too hard to keep the blue armors, do i need to do an array like the previous suggestion or could i just filter out the blue rarity somehow?

That's a simple function:
All lines that have Return False below are items that will not be sold. And if none of the item IDs match, it will default to Return True which allows to sell the item.
You could try adding ElseIf $m = 2623 Then Return False in the same manner to see if that will suffice to prevent selling of blue items. Otherwise you do have to make a list/array of all drops you want to preserve.
This function in it's current form looks quite ugly. I would put all these itemIDs in an array and simply make one If statement compare to that array instead. And bring out the names of all the IDs in a comment at least.

p.s. If you really want to understand the programming language, start to actually learn it. Trial and error, copy and paste wastes time and nerves. Invest time wisely and learn the language.
ytix is offline  
Old 12/31/2017, 00:06   #937
 
elite*gold: 0
Join Date: Sep 2017
Posts: 30
Received Thanks: 0
Quote:
Originally Posted by ytix View Post
That's a simple function:
All lines that have Return False below are items that will not be sold. And if none of the item IDs match, it will default to Return True which allows to sell the item.
You could try adding ElseIf $m = 2623 Then Return False in the same manner to see if that will suffice to prevent selling of blue items. Otherwise you do have to make a list/array of all drops you want to preserve.
This function in it's current form looks quite ugly. I would put all these itemIDs in an array and simply make one If statement compare to that array instead. And bring out the names of all the IDs in a comment at least.

p.s. If you really want to understand the programming language, start to actually learn it. Trial and error, copy and paste wastes time and nerves. Invest time wisely and learn the language.
okay I tried adding that line in and it didn't work. so I guess i need to make a list/array. if I may ask do you happen to know the basic format or know of a bot from here that has it that i may see how its formatted?
lyscir is offline  
Old 12/31/2017, 00:18   #938
 
ytix's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 38
Received Thanks: 5
Quote:
Originally Posted by lyscir View Post
okay I tried adding that line in and it didn't work. so I guess i need to make a list/array. if I may ask do you happen to know the basic format or know of a bot from here that has it that i may see how its formatted?
Oh oops, my bad!
Try instead: ElseIf GetRarity($m) = 2623 Then Return False
ytix is offline  
Old 12/31/2017, 00:47   #939
 
elite*gold: 0
Join Date: May 2014
Posts: 269
Received Thanks: 320
Quote:
Originally Posted by ytix View Post
Try instead: ElseIf GetRarity($m) = 2623 Then Return False
You can't get the ItemRarity from an ItemModelID

Quote:
Originally Posted by Stary Pen' View Post
Hi all. Who knows how i can get more packets from Guild Wars? I need to do more functions.
Not sure what you want. Could you explain?
DerMoench14 is offline  
Old 12/31/2017, 07:52   #940
 
ytix's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 38
Received Thanks: 5
Quote:
Originally Posted by DerMoench14 View Post
You can't get the ItemRarity from an ItemModelID
Just when I think I've nailed it, the library is still not satisfied .

Alright, this above If block:
Code:
local $iv = getItemByModelID($m)
And this where it should be:
Code:
ElseIf getRarity($iv) = 2623 Then Return False
ytix is offline  
Old 12/31/2017, 09:38   #941
 
elite*gold: 0
Join Date: Sep 2014
Posts: 40
Received Thanks: 0
Quote:
Originally Posted by Mia Forever View Post
WARNING


I warn, my brother are download a file on GR (and now is here in EPVP) and he lost all the resources
+700A.

check the files because there is phishing !!!!!

phishing = he retrieves your password / login , with a recovery file and it steals you


-I work on this GUY who steals , believe me he will suffer and I'll post his screen before 2018, I already have some information.

warn you he is among us, but I can not target him yet, that will come


PLEASURE MIA <3
rip i got hacked and lost like 300a... no idea how:S

do u know wich bot it was and how do i not being hacked again ? xd i mean do i get hacked when i start just that bot? or do i have to delite that bot from the hard drive :S ofc i need change info and all..
Lillebror_1 is offline  
Old 12/31/2017, 09:46   #942
 
elite*gold: 0
Join Date: Dec 2017
Posts: 64
Received Thanks: 2
Exclamation

Quote:
Originally Posted by DerMoench14 View Post
You can't get the ItemRarity from an ItemModelID



Not sure what you want. Could you explain?
I need packet logger for guild wars. I have wiresshark, can see packets but data encoded and i cant see it. Packets from GW send in TCP Protocols.

D8 8F F6 0C 47 - packet 1
C5 3E 6A 18 91 - packet 2
E4 CD 06 40 44 - packet 3
82 C9 6A 71 8B - packet 4

0x44 0x38 0x20 0x38 0x46 0x20 0x46 0x36 0x20 0x30 0x43 0x20 0x34 0x37 - packet 1
0x43 0x35 0x20 0x33 0x45 0x20 0x36 0x41 0x20 0x31 0x38 0x20 0x39 0x31 - packet 2
0x45 0x34 0x20 0x43 0x44 0x20 0x30 0x36 0x20 0x34 0x30 0x20 0x34 0x34 - packet 3
0x38 0x32 0x20 0x43 0x39 0x20 0x36 0x41 0x20 0x37 0x31 0x20 0x38 0x42 - packet 4


This packet is sent when you press the button to start in RA. All packages received after pressing the button, so I pressed the button 4 times. Now view what is written in GWA2.


Func EnterChallenge()
Return SendPacket(0x8, 0x9E, 1)
EndFunc ;==>EnterChallenge

Func EnterChallengeForeign()
Return SendPacket(0x8, 0x9E, 0)
EndFunc ;==>EnterChallengeForeign

No match is found. So, how i can find correct packets?
Stary Pen' is offline  
Old 12/31/2017, 12:48   #943


 
Mia Forever's Avatar
 
elite*gold: 16
The Black Market: 110/0/0
Join Date: Apr 2016
Posts: 233
Received Thanks: 292
@ I advise you to change login infos GW/Mail or others and make a big cleaning.

Hello, there was a file Autoit Executable File (.EXE)
Check before downloading whatsoever...many of us want to share, and sometimes there is a bad soul.
-Ultimate GW1BOTS Collection <INFECTED lot of Trojans> in Epvp from Rob9292
-Polar v.9.0 <INFECTED lot of Trojans> in GR from nikke92




This Wonderfull Angel FRIENDLY in GR he said true "RiflemanX" @, When downloading content from this site only use content that you can see. Never blindly run .exe files. If something is suspicious do not use and please let someone know so it can be examined. Additionally, if you have a script that you you have written and would like to share, then please share it as .au3 file so everyone can clearly see the content.


I wish you a happy new year to all in advance, and if need be write me
Pleasure Mia <3
Mia Forever is offline  
Thanks
1 User
Old 12/31/2017, 13:52   #944
 
elite*gold: 0
Join Date: May 2014
Posts: 269
Received Thanks: 320
Quote:
Originally Posted by Stary Pen' View Post
I need packet logger for guild wars. I have wiresshark, can see packets but data encoded and i cant see it. Packets from GW send in TCP Protocols.

D8 8F F6 0C 47 - packet 1
C5 3E 6A 18 91 - packet 2
E4 CD 06 40 44 - packet 3
82 C9 6A 71 8B - packet 4

0x44 0x38 0x20 0x38 0x46 0x20 0x46 0x36 0x20 0x30 0x43 0x20 0x34 0x37 - packet 1
0x43 0x35 0x20 0x33 0x45 0x20 0x36 0x41 0x20 0x31 0x38 0x20 0x39 0x31 - packet 2
0x45 0x34 0x20 0x43 0x44 0x20 0x30 0x36 0x20 0x34 0x30 0x20 0x34 0x34 - packet 3
0x38 0x32 0x20 0x43 0x39 0x20 0x36 0x41 0x20 0x37 0x31 0x20 0x38 0x42 - packet 4


This packet is sent when you press the button to start in RA. All packages received after pressing the button, so I pressed the button 4 times. Now view what is written in GWA2.


Func EnterChallenge()
Return SendPacket(0x8, 0x9E, 1)
EndFunc ;==>EnterChallenge

Func EnterChallengeForeign()
Return SendPacket(0x8, 0x9E, 0)
EndFunc ;==>EnterChallengeForeign

No match is found. So, how i can find correct packets?

The CtoGS Packets gets encrypted before they are send to the Server.
You can for now try to Breakpoint the PacketFunction @8e130 (right before Packets gets encrypt).
From there you'll find the size in EDX (Bytes). The Top Stacks Value gives you the Pointer to the CtoGS Struct. First Value in Struct is the Header, followed by (Size(4Bytes)-4Bytes) (Optional)Parameters.
Good Luck

When im back at Home i can upload you a Tool that can show you all GS Packets in a human readable format.
DerMoench14 is offline  
Thanks
1 User
Old 12/31/2017, 15:00   #945
 
elite*gold: 0
Join Date: Dec 2017
Posts: 64
Received Thanks: 2
Quote:
Originally Posted by DerMoench14 View Post
The CtoGS Packets gets encrypted before they are send to the Server.
You can for now try to Breakpoint the PacketFunction @8e130 (right before Packets gets encrypt).
From there you'll find the size in EDX (Bytes). The Top Stacks Value gives you the Pointer to the CtoGS Struct. First Value in Struct is the Header, followed by (Size(4Bytes)-4Bytes) (Optional)Parameters.
Good Luck

When im back at Home i can upload you a Tool that can show you all GS Packets in a human readable format.
it would be very cool
Stary Pen' is offline  
Reply

Tags
bots, free, gw1, working


Similar Threads Similar Threads
[Selling] GW1 50/50 HoM + GWAMM + unlinked ~ available until 20.02.2017 ~
12/28/2016 - Guild Wars Trading - 48 Replies
I'm selling amazing account! Because no1 is buying and I'm trying to sell it for long time, account will be withdrawn from the market 20.02.2017. I will stop selling it after that time. withdrawn from the market http://s32.postimg.org/vt0fmhhsl/Ho_M.jpg http://s32.postimg.org/3za15anh1/main.jpg Important Notes - serious buyers only
► Free Avatars Event | Facebook Event | Momo Designs [ July 2 – July 4 ]
07/02/2016 - Freebies - 1 Replies
http://www.elitepvpers.com/forum/customavatars/ava tar6844591_19.gif http://i.epvpimg.com/sxVGh.png Order you Free Avatar Design now . From 2/7/2016 to 4/7/2016 ● like & share our official page on facebook ● post your design details on the wall of event ● your design will be ready in few min Facebook Page : Here Event : Here
[Selling] WTS: GW2+GW1 HOM 39/50 GW1 R12
07/09/2015 - Guild Wars 2 Trading - 1 Replies
Guild wars acc r12 Im going to sell my Ha r12 Rank guild wars account. Its linked to an GW2 (I will sell both) Account. I already changed Email-Adress so you will get all the informations u need and you just need to change the E-mail password. (Serial, Email Account Password, Email, GW account password). Account got fac proph nightfall and eotn + bonus mission pack . HOM 39/40 I prefer middelman for the deal! Only will sell to trusted user!



All times are GMT +2. The time now is 16:56.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.