|
You last visited: Today at 20:09
Advertisement
AK - Duplicating help needed
Discussion on AK - Duplicating help needed within the Aura Kingdom forum part of the MMORPGs category.
04/05/2014, 21:00
|
#196
|
elite*gold: 0
Join Date: Oct 2009
Posts: 61
Received Thanks: 20
|
Star Sand Grocer Store (can be opened anywhere)
Code:
A3 01 A8 27 00 00 41 00 00 00 04 00 69 74 65 6D
Recv
socket ID - always the second option
Guild House Grocer Store (can be opened anywhere)
Code:
A3 01 92 29 00 00 36 00 00 00 04 00 69 74 65 6D
Recv
socket ID - always the second option
edit: they can be opened anywhere but confirmed it's not working (meaning you can't sell or buy from it)
and i finally ******* found it!!!! how to dupe an item!!!!!!!!!!!!!!! dude i will share!!!! recording it now!!!
edit: nvm false alarm.. it's visual.. but i will upload it... if anyone wants to have a go at it then go for it.
|
|
|
04/05/2014, 21:55
|
#197
|
elite*gold: 0
Join Date: Mar 2014
Posts: 5
Received Thanks: 0
|
lol false alarm :P but thnx for sharing
|
|
|
04/05/2014, 22:25
|
#198
|
elite*gold: 0
Join Date: Aug 2011
Posts: 14
Received Thanks: 0
|
its ok, anything pls share.. we can discuss it..
|
|
|
04/06/2014, 01:50
|
#199
|
elite*gold: 0
Join Date: Oct 2009
Posts: 61
Received Thanks: 20
|
|
|
|
04/06/2014, 11:55
|
#200
|
elite*gold: 0
Join Date: Oct 2009
Posts: 220
Received Thanks: 87
|
Quote:
Originally Posted by thaikill
|
oh I already tried that method. but it just doesn't work even if you recv and recv and recv it all over again.
thanks for the share anyways.
Methods I'm trying to do :
Buying an item at AH at the exact time it will expire.
Buying an item at a stall right before it closes.
Finding a function to lag the trade window.
|
|
|
04/07/2014, 06:33
|
#201
|
elite*gold: 0
Join Date: Jun 2007
Posts: 100
Received Thanks: 36
|
Here's an AutoIT Envoy Packet Generator:
Code:
#include <GUIConstantsEx.au3>
Global $event, $btnGen, $envoy[9][9]
CreateGUI()
main()
Func main()
Do
$event = GUIGetMsg()
Switch $event
Case $btnGen
Local $count = 0, $pHexString = ""
For $row = 0 To 8 Step 1
For $col = 0 To 8 Step 1
If GUICtrlRead($envoy[$row][$col]) == $GUI_CHECKED Then
$count = $count + 1
$pos = ($row + $col) + ($col * 8)
$pHexString = $pHexString & FormatToHexString($pos, 8)
EndIf
Next
Next
$pHexString = "9F 00 " & FormatToHexString($count) & $pHexString
$pHexString = StringStripWS($pHexString, 2)
MsgBox(64, "Envoy Packet Copied To Clipboard", $pHexString)
ClipPut($pHexString)
Case Else
EndSwitch
Until $event = $GUI_EVENT_CLOSE
EndFunc
Func CreateGUI()
GUICreate("Envoy Packet Generator", 315, 350)
For $row = 0 To 8 Step 1
For $col = 0 To 8 Step 1
$envoy[$row][$col] = GUICtrlCreateCheckbox(" ", 30 * ($row + 1), 30 * ($col + 1))
If $row > 0 And $col > 0 And $row < 8 And $col < 8 Then
GUICtrlSetState(-1, $GUI_DISABLE)
EndIf
Next
Next
$btnGen = GUICtrlCreateButton(" Generate Packet > Copy to Clipboard ", 30, 30 * ($col + 1))
GUISetState()
EndFunc
Func FormatToHexString($data, $count = 4)
Local $t1 = Hex($data, $count), $t2 = ""
For $i = 1 To $count Step 2
$t2 = StringMid($t1, $i, 2) & " " & $t2
Next
Return $t2
EndFunc
|
|
|
04/07/2014, 06:36
|
#202
|
elite*gold: 0
Join Date: Oct 2009
Posts: 220
Received Thanks: 87
|
Quote:
Originally Posted by mandark15
Here's an AutoIT Envoy Packet Generator:
Code:
#include <GUIConstantsEx.au3>
Global $event, $btnGen, $envoy[9][9]
CreateGUI()
main()
Func main()
Do
$event = GUIGetMsg()
Switch $event
Case $btnGen
Local $count = 0, $pHexString = ""
For $row = 0 To 8 Step 1
For $col = 0 To 8 Step 1
If GUICtrlRead($envoy[$row][$col]) == $GUI_CHECKED Then
$count = $count + 1
$pos = ($row + $col) + ($col * 8)
$pHexString = $pHexString & FormatToHexString($pos, 8)
EndIf
Next
Next
$pHexString = "9F 00 " & FormatToHexString($count) & $pHexString
$pHexString = StringStripWS($pHexString, 2)
MsgBox(64, "Envoy Packet Copied To Clipboard", $pHexString)
ClipPut($pHexString)
Case Else
EndSwitch
Until $event = $GUI_EVENT_CLOSE
EndFunc
Func CreateGUI()
GUICreate("Envoy Packet Generator", 315, 350)
For $row = 0 To 8 Step 1
For $col = 0 To 8 Step 1
$envoy[$row][$col] = GUICtrlCreateCheckbox(" ", 30 * ($row + 1), 30 * ($col + 1))
If $row > 0 And $col > 0 And $row < 8 And $col < 8 Then
GUICtrlSetState(-1, $GUI_DISABLE)
EndIf
Next
Next
$btnGen = GUICtrlCreateButton(" Generate Packet > Copy to Clipboard ", 30, 30 * ($col + 1))
GUISetState()
EndFunc
Func FormatToHexString($data, $count = 4)
Local $t1 = Hex($data, $count), $t2 = ""
For $i = 1 To $count Step 2
$t2 = StringMid($t1, $i, 2) & " " & $t2
Next
Return $t2
EndFunc
|
Sorry for the noob question but what does it do and how to use it?
|
|
|
04/07/2014, 09:04
|
#203
|
elite*gold: 0
Join Date: Jun 2007
Posts: 100
Received Thanks: 36
|
Quote:
Originally Posted by patrixer
Sorry for the noob question but what does it do and how to use it?
|
Just as what the name implies... It generates the envoy packet that you selected. You can then paste and send it to the server using AKPE.
You can probably do it manually but this one can get the job faster.
|
|
|
04/07/2014, 15:36
|
#204
|
elite*gold: 0
Join Date: Jul 2011
Posts: 2
Received Thanks: 3
|
Quote:
Originally Posted by mandark15
Here's an AutoIT Envoy Packet Generator:
Code:
#include <GUIConstantsEx.au3>
Global $event, $btnGen, $envoy[9][9]
CreateGUI()
main()
Func main()
Do
$event = GUIGetMsg()
Switch $event
Case $btnGen
Local $count = 0, $pHexString = ""
For $row = 0 To 8 Step 1
For $col = 0 To 8 Step 1
If GUICtrlRead($envoy[$row][$col]) == $GUI_CHECKED Then
$count = $count + 1
$pos = ($row + $col) + ($col * 8)
$pHexString = $pHexString & FormatToHexString($pos, 8)
EndIf
Next
Next
$pHexString = "9F 00 " & FormatToHexString($count) & $pHexString
$pHexString = StringStripWS($pHexString, 2)
MsgBox(64, "Envoy Packet Copied To Clipboard", $pHexString)
ClipPut($pHexString)
Case Else
EndSwitch
Until $event = $GUI_EVENT_CLOSE
EndFunc
Func CreateGUI()
GUICreate("Envoy Packet Generator", 315, 350)
For $row = 0 To 8 Step 1
For $col = 0 To 8 Step 1
$envoy[$row][$col] = GUICtrlCreateCheckbox(" ", 30 * ($row + 1), 30 * ($col + 1))
If $row > 0 And $col > 0 And $row < 8 And $col < 8 Then
GUICtrlSetState(-1, $GUI_DISABLE)
EndIf
Next
Next
$btnGen = GUICtrlCreateButton(" Generate Packet > Copy to Clipboard ", 30, 30 * ($col + 1))
GUISetState()
EndFunc
Func FormatToHexString($data, $count = 4)
Local $t1 = Hex($data, $count), $t2 = ""
For $i = 1 To $count Step 2
$t2 = StringMid($t1, $i, 2) & " " & $t2
Next
Return $t2
EndFunc
|
This script is very helpful, but has one error:
Code:
If $row > 0 And $col > 0 And $row < 8 And $col < 8 Then
GUICtrlSetState(-1, $GUI_DISABLE)
EndIf
When I opened your script, the check box in the middle was disabled, when I removed this part, it worked. *Maybe you wanted to do something else, so, sorry for using "error" to describe this conflict
So the code is:
Code:
#include <GUIConstantsEx.au3>
Global $event, $btnGen, $envoy[9][9]
CreateGUI()
main()
Func main()
Do
$event = GUIGetMsg()
Switch $event
Case $btnGen
Local $count = 0, $pHexString = ""
For $row = 0 To 8 Step 1
For $col = 0 To 8 Step 1
If GUICtrlRead($envoy[$row][$col]) == $GUI_CHECKED Then
$count = $count + 1
$pos = ($row + $col) + ($col * 8)
$pHexString = $pHexString & FormatToHexString($pos, 8)
EndIf
Next
Next
$pHexString = "9F 00 " & FormatToHexString($count) & $pHexString
$pHexString = StringStripWS($pHexString, 2)
MsgBox(64, "Envoy Packet Copied To Clipboard", $pHexString)
ClipPut($pHexString)
Case Else
EndSwitch
Until $event = $GUI_EVENT_CLOSE
EndFunc
Func CreateGUI()
GUICreate("Envoy Packet Generator", 315, 350)
For $row = 0 To 8 Step 1
For $col = 0 To 8 Step 1
$envoy[$row][$col] = GUICtrlCreateCheckbox(" ", 30 * ($row + 1), 30 * ($col + 1))
Next
Next
$btnGen = GUICtrlCreateButton(" Generate Packet > Copy to Clipboard ", 30, 30 * ($col + 1))
GUISetState()
EndFunc
Func FormatToHexString($data, $count = 4)
Local $t1 = Hex($data, $count), $t2 = ""
For $i = 1 To $count Step 2
$t2 = StringMid($t1, $i, 2) & " " & $t2
Next
Return $t2
EndFunc
Code by mandark15
|
|
|
04/07/2014, 19:49
|
#205
|
elite*gold: 0
Join Date: Feb 2013
Posts: 10
Received Thanks: 0
|
You all are so smart lol, I just figured out how to send a packet that didn't even work xD
|
|
|
04/08/2014, 01:35
|
#206
|
elite*gold: 0
Join Date: Oct 2009
Posts: 61
Received Thanks: 20
|
Quote:
Originally Posted by mandark15
Here's an AutoIT Envoy Packet Generator:
Code:
#include <GUIConstantsEx.au3>
Global $event, $btnGen, $envoy[9][9]
CreateGUI()
main()
Func main()
Do
$event = GUIGetMsg()
Switch $event
Case $btnGen
Local $count = 0, $pHexString = ""
For $row = 0 To 8 Step 1
For $col = 0 To 8 Step 1
If GUICtrlRead($envoy[$row][$col]) == $GUI_CHECKED Then
$count = $count + 1
$pos = ($row + $col) + ($col * 8)
$pHexString = $pHexString & FormatToHexString($pos, 8)
EndIf
Next
Next
$pHexString = "9F 00 " & FormatToHexString($count) & $pHexString
$pHexString = StringStripWS($pHexString, 2)
MsgBox(64, "Envoy Packet Copied To Clipboard", $pHexString)
ClipPut($pHexString)
Case Else
EndSwitch
Until $event = $GUI_EVENT_CLOSE
EndFunc
Func CreateGUI()
GUICreate("Envoy Packet Generator", 315, 350)
For $row = 0 To 8 Step 1
For $col = 0 To 8 Step 1
$envoy[$row][$col] = GUICtrlCreateCheckbox(" ", 30 * ($row + 1), 30 * ($col + 1))
If $row > 0 And $col > 0 And $row < 8 And $col < 8 Then
GUICtrlSetState(-1, $GUI_DISABLE)
EndIf
Next
Next
$btnGen = GUICtrlCreateButton(" Generate Packet > Copy to Clipboard ", 30, 30 * ($col + 1))
GUISetState()
EndFunc
Func FormatToHexString($data, $count = 4)
Local $t1 = Hex($data, $count), $t2 = ""
For $i = 1 To $count Step 2
$t2 = StringMid($t1, $i, 2) & " " & $t2
Next
Return $t2
EndFunc
|
|
|
|
04/08/2014, 01:41
|
#207
|
elite*gold: 0
Join Date: Dec 2008
Posts: 5
Received Thanks: 0
|
i think he's asking what dose it do and what is it used for how to use it.
|
|
|
04/08/2014, 05:15
|
#208
|
elite*gold: 0
Join Date: Jul 2011
Posts: 2
Received Thanks: 3
|
Using Envoy Packet Generator:
1: Download and Open
Quote:
Originally Posted by thaikill
|
2: Open game with AKPE
3: Choose what you want:
4: Click Generate Packet > Copy to Clipboard
5: A message with the code will popup *The code was already copied to the clipboard
6: Go to AKPE, paste code, SockedID the last , click Send and done:
|
|
|
04/08/2014, 10:37
|
#209
|
elite*gold: 94
Join Date: Mar 2007
Posts: 569
Received Thanks: 1,497
|
Hello everyone!
a few days ago there was a discussion with some of the other developers in the Aura Kingdom Developers group here on EPVP.
we've all pretty much agreed that everything that's going on right now is not good for anyone.
and I'm talking about servers going down and other disruptions of service.
So I'm writing this post to request that you guys will not do things that may take the servers down or cause any kind of disruption of service in the game (such as Navea being inaccessible).
whether it's intentional or not, if you know something can go insanely wrong with what you're trying to exploit, please, do not mess with it.
I will add some filtering aspects to the next version, but until then, I hope you guys will not continue doing anything like that anymore.
* one thing that is already known to cause server crashes if done incorrectly is the envoy path.
if you know about other things that can cause server crashes or any other disruption of service, please let me know by PMing me.
I'm really sorry, but if you guys continue to cause these issues (intentionally or not), I'll have to stop supporting AKPE and all development will be stopped.
meaning I will not update it with new features and it will not be updated after game patches.
Many will argue about exploiting and/or bug abusing but everyone on EPVP is most likely to support the idea.
though I suppose no one will argue that a complete/partial disruption of service is a whole different story.
so once again - please think about the consequences before you are trying to do things that may cause server crashes or any other disruption of service.
Thanks!
Oriya.
|
|
|
04/08/2014, 11:28
|
#210
|
elite*gold: 0
Join Date: Jun 2008
Posts: 30
Received Thanks: 17
|
Quote:
Originally Posted by Oriya9
Hello everyone!
a few days ago there was a discussion with some of the other developers in the Aura Kingdom Developers group here on EPVP.
we've all pretty much agreed that everything that's going on right now is not good for anyone.
and I'm talking about servers going down and other disruptions of service.
So I'm writing this post to request that you guys will not do things that may take the servers down or cause any kind of disruption of service in the game (such as Navea being inaccessible).
whether it's intentional or not, if you know something can go insanely wrong with what you're trying to exploit, please, do not mess with it.
I will add some filtering aspects to the next version, but until then, I hope you guys will not continue doing anything like that anymore.
* one thing that is already known to cause server crashes if done incorrectly is the envoy path.
if you know about other things that can cause server crashes or any other disruption of service, please let me know by PMing me.
I'm really sorry, but if you guys continue to cause these issues (intentionally or not), I'll have to stop supporting AKPE and all development will be stopped.
meaning I will not update it with new features and it will not be updated after game patches.
Many will argue about exploiting and/or bug abusing but everyone on EPVP is most likely to support the idea.
though I suppose no one will argue that a complete/partial disruption of service is a whole different story.
so once again - please think about the consequences before you are trying to do things that may cause server crashes or any other disruption of service.
Thanks!
Oriya.
|
I am agree with you, if you even have another update better not release it to public,
so sad some ppls dont know how to use such nice tool in nice manners,
hehehe, Thank You Oriya9 !
|
|
|
 |
|
Similar Threads
|
duplicating
09/30/2012 - General Gaming Discussion - 3 Replies
can any1 please share with me as to how they duplicate items in the game...
ty in advance.
|
[WTB]Duplicating hack
01/15/2012 - Dekaron Trading - 3 Replies
Wtb an item duplication hack
|
Duplicating??!?!?!
04/29/2009 - General Gaming Discussion - 25 Replies
Hello All Neocron Runners,
I'm wondering what Macro, as well as how exactly to dupp.
I've read a few threads on here, but its mainly german, or they say how but doesnt exactly work cuz i dont know the macro and other things...
please let me know how 0_o
|
[Help] Duplicating a map?
01/10/2009 - CO2 Private Server - 2 Replies
Is it possible to duplicate the same map over and over again?
|
WoW Key Duplicating
10/17/2005 - World of Warcraft - 10 Replies
-------------------------------------------------- -----------
World of Warcraft Key Duplicating by SiLENCE.D3
Tested on EU Servers
------------------------------------------------- ------------
So, you whant a second World of Warcraft Key?
Just follow these:
This is Your Key: 123ABC-12AB-123ABC-12AB-123ABC
Block1: 123ABC
|
All times are GMT +1. The time now is 20:13.
|
|