Jump to content

LineageIIC3Freak

Active Members
  • Posts

    33
  • Joined

  • Last visited

LineageIIC3Freak's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Is this all progamming in lua? I want to write addon scripts for World Of Warcraft but im not sure how to use LUA unlessthis is it then im straight lol.
  2. Ok cool thanks for helping instead of wasting time telling me i've done something wrong.
  3. Hmmm i could of swarn that the question was "Does anyone have paintshop pro to share" not "Can everyone come and trash my post"... well i guess you get some people that have nothing better to do...
  4. I haven't had a good paint program to use besides when i was in school and i don't have any source of income so i was wondering if anyone had Paint Shop Pro or anying thats around that level that they could send to me some how... i know it's pretty lame to ask for this and try to sneak my way around buying it but man using windows basic paint is horrible lol well i'd appreciate it extremely and again im sorry for posting off topic i'm sure this will be the only one.
  5. yea still aint reading it...
  6. Yea i copied the script but when i went to run it the #include treeview didnt read
  7. Its like this ive already tried to use the autoit window info on the game but it says [Control Hidden] and im not sure how to get the right control ID to the objects i want to ControlClick, it would help if you went to www.conqueronline.com and downloaded the game and try getting the control on a monster of some sort and tell me how you did it...
  8. Ok heres a lil toughy for yall to answer... ok i play conquer online (www.conqueronline.com) and well i wanna be able to click stuff inside the game without the mouse moving via ControlClick() but i have no idea how to get the control inside the game so any help???
  9. Ok, let me clean up my question a little bit... ok look When I make a selection from this box:(Theyre Cities In The Game) GUICtrlCreateCombo("", 5, 65, 100, 20, $CBS_DROPDOWNLIST) GUICtrlSetData(-1,"Twin City|Ape City|Phoenix Castle|Bird Island|Desert City|Adventure Land", "Twin City") I want the entire selection to be changed inside of this on:(Monsters In Each City) GUICtrlCreateCombo("", 5, 105, 100, 20, $CBS_DROPDOWNLIST) GUICtrlSetData(-1,"TombBat|Hawking|AlienSerpent|SlowApe|ElfApe", "TombBat") And when i select something from this box: GUICtrlCreateCombo("", 5, 25, 100, 20, $CBS_DROPDOWNLIST) GUICtrlSetData(-1,"Warrior|Trojan|Archer|Taoist", "Warrior") I want the controls on the GUI to change... Heres the code, copy this to notepad save as .au3 and check it out and reply please.... #include <GUIConstants.au3> Opt("GUIOnEventMode", 1) HotKeySet("{ESC}", "Quit") HotKeySet("{F12}", "Pause") GUICreate("COAutoPilot", 500, 300) GUICtrlCreatePic("C:\Documents and Settings\Woozer\My Documents\My Pictures\QuickBar.bmp", 5, 255, 410, 39) GUICtrlCreateLabel("Character Select", 5, 10) GUICtrlCreateCombo("", 5, 25, 100, 20, $CBS_DROPDOWNLIST) GUICtrlSetData(-1,"Warrior|Trojan|Archer|Taoist", "Warrior") GUICtrlCreateLabel("Area Select", 5, 50) GUICtrlCreateCombo("", 5, 65, 100, 20, $CBS_DROPDOWNLIST) GUICtrlSetData(-1,"Twin City|Ape City|Phoenix Castle|Bird Island|Desert City|Adventure Land", "Twin City") GUICtrlCreateLabel("Monster Select", 5, 90) GUICtrlCreateCombo("", 5, 105, 100, 20, $CBS_DROPDOWNLIST) GUICtrlSetData(-1,"TombBat|Hawking|AlienSerpent|SlowApe|ElfApe", "TombBat") GUICtrlCreateButton("Run", 420, 255, 75, 20) $Temporary = GUICtrlCreateButton("Exit", 420, 275, 75, 20) GUICtrlSetOnEvent($Temporary, "Quit") GUICtrlCreateGroup("Controls", 180, 30, 260, 180); Just an example GUICtrlCreateLabel("This is for expample purposes only.", 200, 50); Just a temporary label GUICtrlCreateLabel("A Variety Of Conrols Should Be Here.", 200, 100); Just a temporary label GUICtrlCreateLabel("But Only When A Combo Selection Is Made.", 200, 150); Just a temporary label GUICtrlCreateLabel("The Area Selection Combo Should", 5, 130); Just a temporary label GUICtrlCreateLabel("Change All The Choices In The", 5, 150); Just a temporary label GUICtrlCreateLabel("Monster Select Combo Box To A", 5, 170); Just a temporary label GUICtrlCreateLabel("New Set. Example Ape City =", 5, 190); Just a temporary label GUICtrlCreateLabel("ElfApe and SlowApe then Phoenix", 5, 210); Just a temporary label GUICtrlCreateLabel("Castle = WingedSnake n Hawking", 5, 230); Just a temporary label GUISetState() While 1 Sleep(1000) WEnd Func Pause() While 1 Sleep(1) WEnd EndFunc Func Quit() Exit EndFunc
  10. ohhh yea lol i forgotz all about that oh n hey mind checkin my latest post? i need a lil help
  11. Random(Asc("A"), Asc("Z"), 1) simple as that
  12. lol crap didnt know i was logged on as Examiner lol but yea thas me above
  13. lol i have no idea what this is or does... shows how equivelant a GED is to a highschool diploma lol
  14. Ok hi everyone how is it going? Well today I have a noobish problem and it will probably be answered to VERY easily. Ok i'm making a program that deals with a ton of controls that depend on combo box selections. There is where my problem is and I figure thats probably easy to fix so would anyone mind helping me. So basically for each selection on a combo i want the controls to change on the GUI. I can set where to create them and everything but i'm not sure how to set each event and to have controls change on each selection. I can't figure out how to put screenshots on here so here is the code I have at the moment. #include <GUIConstants.au3> Opt("GUIOnEventMode", 1) HotKeySet("{ESC}", "Quit") HotKeySet("{F12}", "Pause") GUICreate("COAutoPilot", 500, 300) GUICtrlCreatePic("C:\Documents and Settings\Woozer\My Documents\My Pictures\QuickBar.bmp", 5, 255, 410, 39) GUICtrlCreateLabel("Character Select", 5, 10) GUICtrlCreateCombo("", 5, 25, 100, 20, $CBS_DROPDOWNLIST) GUICtrlSetData(-1,"Warrior|Trojan|Archer|Taoist", "Warrior") GUICtrlCreateLabel("Area Select", 5, 50) GUICtrlCreateCombo("", 5, 65, 100, 20, $CBS_DROPDOWNLIST) GUICtrlSetData(-1,"Twin City|Ape City|Phoenix Castle|Bird Island|Desert City|Adventure Land", "Twin City") GUICtrlCreateLabel("Monster Select", 5, 90) GUICtrlCreateCombo("", 5, 105, 100, 20, $CBS_DROPDOWNLIST) GUICtrlSetData(-1,"TombBat|Hawking|AlienSerpent|SlowApe|ElfApe", "TombBat") GUICtrlCreateButton("Run", 420, 255, 75, 20) $EBtn = GUICtrlCreateButton("Exit", 420, 275, 75, 20) GUICtrlSetOnEvent($EBtn, "Quit") GUICtrlCreateGroup("Controls", 180, 30, 260, 180); <--- Temporary GUICtrlCreateLabel("This is for expample purposes only.", 200, 50); <--- Temporary GUICtrlCreateLabel("A Variety Of Conrols Should Be Here.", 200, 100); <--- Temporary GUICtrlCreateLabel("But Only When A Combo Selection Is Made.", 200, 150); <--- Temporary GUISetState() While 1 Sleep(1000) WEnd Func Pause() While 1 Sleep(1) WEnd EndFunc Func Quit() Exit EndFunc Oh and where you see TombBat|Hawking|AlienSerpent|SlowApe|ElfApe I want to set an event where the combo second from the top changes the information in that depending on which "city" you select. If somone can take time out of their own and help me with this i'd appreciate it very much. I'll also be sure you will be the first to receive a final version. Thank You!
×
×
  • Create New...