Close
Page 2 of 2 FirstFirst 1 2
Showing results 11 to 17 of 17
  1. #11

    Default

    Quote Originally Posted by ichybon
    I am not certain that there is some sort of assisting, but I sure hope so.

    http://www.perfectworld.com.my/ :mrgreen:
    Planning to try and Dual Perfect World also.

  2. #12

    Default

    Will you be using using one or two machines? If one, will you use Keyclone or Autohotkey? I will be using the very basic Autohotkey script that has been posted on this site for WoW, but I will of course slightly modify it for my needs.
    Do you know if there is a way to set a hotkey to follow someone in Perfect World, or even better to assist them? "Since their macros are strictly for skill use only."

  3. #13

    Default Dual Boxing Perfect World - Single PC

    If anyone is interested in playing 2 or more Perfect World game windows at the same time on a single PC, you will need to use a program to modify the name of the game client, so more than one will run at the same time.
    http://www.fileden.com/files/2007/10...Dual%20Box.rar
    This program is in Vietnamese, but I have included a very useful guide on how to use it.

    You can also use a program called AutoIt v3 & use this script:

    #include <GUIConstants.au3>
    #include <Misc.au3>
    Opt("GUIOnEventMode", 1)
    ;$dll = DllOpen("user32.dll")

    $key1 = True
    global $Name_Game = "Element Client";"abc.txt - Notepad"
    global $ID = 0
    global $Run_ID = 0

    ;---------------------------------HotKey---------------------------------

    HotKeySet("{F12}", "HotKey1") ; F12

    HotKeySet("{F11}", "HotKey2") ; F11

    HotKeySet("{F9}", "Add_ID") ;F9

    HotKeySet("{F10}", "AltQ") ;F10

    ;--------------------------------Main-------------------------------------

    $AutoTGHMv10 = GUICreate("Perfect World Tool", 230, 60)
    $Add_ID = GUICtrlCreateButton("ID Them", 10, 10, 100, 25)
    GUICtrlSetOnEvent($Add_ID,"Add_ID")
    $Exit_ID = GUICtrlCreateButton("Escape", 120, 10, 100, 25)
    GUICtrlSetOnEvent($Exit_ID,"AltQ")
    $MenuItem1 = GUICtrlCreateMenu("Options")
    $MenuItem2 = GUICtrlCreateMenuItem("ID Them - F9",$MenuItem1)
    GUICtrlSetOnEvent($MenuItem2,"Add_ID")
    $MenuItem3 = GUICtrlCreateMenuItem("Hide/Show Game - F12",$MenuItem1)
    GUICtrlSetOnEvent($MenuItem3,"HotKey1")
    $MenuItem4 = GUICtrlCreateMenuItem("Open Taskbar - F11",$MenuItem1)
    GUICtrlSetOnEvent($MenuItem4,"HotKey2")
    $MenuItem5 = GUICtrlCreateMenuItem("Escape - F10",$MenuItem1)
    GUICtrlSetOnEvent($MenuItem5,"AltQ")
    GUISetState(@SW_SHOW)

    ;--------------------------------Code----------------------------------------

    While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
    Case $MenuItem2
    Add_ID()
    Case $MenuItem3
    HotKey1()
    Case $MenuItem4
    HotKey2()
    Case $MenuItem5
    Exit
    Case $GUI_EVENT_CLOSE
    Exit
    EndSwitch
    WEnd

    ;---------------------------------------------function-------------------------

    Func Add_ID()
    ;MsgBox (0, "Them ID", "Them ID")
    $ID = $ID + 1
    WinSetTitle($Name_Game, "", $ID)
    EndFunc

    Func HotKey1()
    $key1 = HideAndShowGame($key1, $ID)
    EndFunc

    Func HotKey2()
    HideAndShowAuto()
    EndFunc

    Func HideAndShowGame($key_Game, $Name)
    $Run_ID = 1
    If $key_Game Then
    WinSetState($Name_Game, "", @SW_HIDE)
    while $Run_ID <= $ID
    ;MsgBox (0, "Hide ID", "Hide ID: " & $Run_ID)
    WinSetState($Run_ID, "", @SW_HIDE)
    $Run_ID = $Run_ID + 1
    WEnd
    Return False
    Else
    WinSetState($Name_Game, "", @SW_SHOW)
    while $Run_ID <= $ID
    ;MsgBox (0, "Show ID", "Show ID: " & $Run_ID)
    WinSetState($Run_ID, "", @SW_SHOW)
    $Run_ID = $Run_ID + 1
    WEnd
    Return True
    EndIf
    EndFunc

    Func HideAndShowAuto()
    WinSetState("Perfect World Tool","", @SW_RESTORE)
    Sleep(3000)
    WinSetState("Perfect World Tool","", @SW_HIDE)
    EndFunc

    Func AltQ()
    Exit
    EndFunc

  4. #14

    Default

    Ichy - I have 2 comps and 2 (free) accounts. I box the old school way (eq style). I set up commands and just use 2 keyboards...

    This site is pushing me to get with the times and use software to make my life easier. The reason I normally do that is because my wife also plays with me, and I only box when she doesn't want to play. So her character is setup for her play style.

    In eq I boxed SK/Shaman (pretty popular duo), in Wow she has a mage, and I have a shaman.


    I haven't started on P.W. yet but I did download the game to both computers. I have to see what functions they have built in to the game (macros, auto follow etc).

  5. #15

    Default

    If anyone is interested in playing 2 or more Perfect World game windows at the same time on a single PC, you will need to use a program to modify the name of the game client, so more than one will run at the same time.
    http://www.fileden.com/files/2007/10...Dual%20Box.rar
    This program is in Vietnamese, but I have included a very useful guide on how to use it.

    You can also use a program called AutoIt v3 & use this script:

    #include <GUIConstants.au3>
    #include <Misc.au3>
    Opt("GUIOnEventMode", 1)
    ;$dll = DllOpen("user32.dll")

    $key1 = True
    global $Name_Game = "Element Client";"abc.txt - Notepad"
    global $ID = 0
    global $Run_ID = 0

    ;---------------------------------HotKey---------------------------------

    HotKeySet("{F12}", "HotKey1") ; F12

    HotKeySet("{F11}", "HotKey2") ; F11

    HotKeySet("{F9}", "Add_ID") ;F9

    HotKeySet("{F10}", "AltQ") ;F10

    ;--------------------------------Main-------------------------------------

    $AutoTGHMv10 = GUICreate("Perfect World Tool", 230, 60)
    $Add_ID = GUICtrlCreateButton("ID Them", 10, 10, 100, 25)
    GUICtrlSetOnEvent($Add_ID,"Add_ID")
    $Exit_ID = GUICtrlCreateButton("Escape", 120, 10, 100, 25)
    GUICtrlSetOnEvent($Exit_ID,"AltQ")
    $MenuItem1 = GUICtrlCreateMenu("Options")
    $MenuItem2 = GUICtrlCreateMenuItem("ID Them - F9",$MenuItem1)
    GUICtrlSetOnEvent($MenuItem2,"Add_ID")
    $MenuItem3 = GUICtrlCreateMenuItem("Hide/Show Game - F12",$MenuItem1)
    GUICtrlSetOnEvent($MenuItem3,"HotKey1")
    $MenuItem4 = GUICtrlCreateMenuItem("Open Taskbar - F11",$MenuItem1)
    GUICtrlSetOnEvent($MenuItem4,"HotKey2")
    $MenuItem5 = GUICtrlCreateMenuItem("Escape - F10",$MenuItem1)
    GUICtrlSetOnEvent($MenuItem5,"AltQ")
    GUISetState(@SW_SHOW)

    ;--------------------------------Code----------------------------------------

    While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
    Case $MenuItem2
    Add_ID()
    Case $MenuItem3
    HotKey1()
    Case $MenuItem4
    HotKey2()
    Case $MenuItem5
    Exit
    Case $GUI_EVENT_CLOSE
    Exit
    EndSwitch
    WEnd

    ;---------------------------------------------function-------------------------

    Func Add_ID()
    ;MsgBox (0, "Them ID", "Them ID")
    $ID = $ID + 1
    WinSetTitle($Name_Game, "", $ID)
    EndFunc

    Func HotKey1()
    $key1 = HideAndShowGame($key1, $ID)
    EndFunc

    Func HotKey2()
    HideAndShowAuto()
    EndFunc

    Func HideAndShowGame($key_Game, $Name)
    $Run_ID = 1
    If $key_Game Then
    WinSetState($Name_Game, "", @SW_HIDE)
    while $Run_ID <= $ID
    ;MsgBox (0, "Hide ID", "Hide ID: " & $Run_ID)
    WinSetState($Run_ID, "", @SW_HIDE)
    $Run_ID = $Run_ID + 1
    WEnd
    Return False
    Else
    WinSetState($Name_Game, "", @SW_SHOW)
    while $Run_ID <= $ID
    ;MsgBox (0, "Show ID", "Show ID: " & $Run_ID)
    WinSetState($Run_ID, "", @SW_SHOW)
    $Run_ID = $Run_ID + 1
    WEnd
    Return True
    EndIf
    EndFunc

    Func HideAndShowAuto()
    WinSetState("Perfect World Tool","", @SW_RESTORE)
    Sleep(3000)
    WinSetState("Perfect World Tool","", @SW_HIDE)
    EndFunc

    Func AltQ()
    Exit
    EndFunc
    the link is broken, kindly repost the link, i wanted to try it
    and any more program for the game?

  6. #16

    Default

    Quote Originally Posted by zanthor
    I've not seen an MMO that didn't support /follow in some form or another since UltimaOnline (1996). I'm curious what game you have in mind.
    For the record, UO had an auto follow...it was just never used.

    It had retarded pathing and you had to hold alt and right click on someone to "Start following"

  7. #17

    Default

    I'm trying to work out whether this is against the TOA of Perfect World, anyone help?
    Wilbur

Similar Threads

  1. Help with follow and assist macros
    By Rowdysattva in forum Macros and Addons
    Replies: 2
    Last Post: 10-12-2008, 05:19 AM
  2. need help with autohotkey follow/assist
    By sorr0w in forum Macros and Addons
    Replies: 2
    Last Post: 06-28-2008, 01:51 AM
  3. dual-boxing follow problems
    By raffikki in forum New Multi-Boxers & Support
    Replies: 4
    Last Post: 06-18-2008, 11:25 PM
  4. Question re. /follow & /assist commands
    By Eyedol in forum New Multi-Boxers & Support
    Replies: 6
    Last Post: 06-11-2008, 12:16 PM
  5. Follow and assist macros....
    By Velassra in forum Macros and Addons
    Replies: 17
    Last Post: 06-03-2008, 09:11 PM

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •