[Alchemy] Flask Price Calculator menu

User Tag List

Results 1 to 8 of 8
  1. #1
    Neverdie00's Avatar Member
    Reputation
    3
    Join Date
    Oct 2008
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Alchemy] Flask Price Calculator

    Reading these forums I've come to know that many people use the scripting language AutoIt to develop their programs/bots. This evening I decided to teach myself some basic AutoIt and created a program to calculate flask prices.

    2shared - download First AutoIt.au3

    This takes into account the price of the materials and vial costs.
    It does not take into account AH cut or deposit costs.

    Feedback is always welcome and appreciated!

    [Alchemy] Flask Price Calculator
  2. #2
    delatharis's Avatar Member
    Reputation
    3
    Join Date
    May 2009
    Posts
    44
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does what it does. Props on just posting source, that way no one can say oh lookit it must be hax its from 1 rep noob, blah, blah, blah. I'm doing the same kinda thing with autoit and c# so I'll play around with it and let you know what I come up with. Thinking of get prices from auctioneer cache if possible.

  3. #3
    sharkyx1x's Avatar Active Member
    Reputation
    36
    Join Date
    Jun 2008
    Posts
    271
    Thanks G/R
    1/12
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i cant seem to download it

  4. #4
    w00tsauce's Avatar Active Member
    Reputation
    18
    Join Date
    Jan 2009
    Posts
    113
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well I do believe you are suppose to show a virus scan of the file before posting it. You can find a site easily by google.

    Dont feel comfortable downloading a file from a guy with 9posts and 3rep.

  5. #5
    Znuff's Avatar Master Sergeant
    Reputation
    23
    Join Date
    Jun 2010
    Posts
    97
    Thanks G/R
    1/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @w00tsauce: You realise it's the SOURCE of the file you are downloading right? If you have no idea how to read an AutoIt source, stop commenting crap.

  6. #6
    delatharis's Avatar Member
    Reputation
    3
    Join Date
    May 2009
    Posts
    44
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Dude that was some serious foot in mouth, just sayin.
    @Neverdie If you want this taken down just PM me bro, although I realize thats why you posted the source file to begin with lol. And again, it's simple and all, but it does what it does, and was a good first learning prog that others can use to see whats up. Although I've scrapped autoit altogether to focus on C#, I just personally like how it's setup better than autoit, but that's just my opinion. Props again on puttin it out there, keep up the work and don't get dissuaded. (Doesn't feel like that's a real word?)

    Contents of First AutoIt.au3
    [spoiler]
    #include <ButtonConstants.au3>
    #include <EditConstants.au3>
    #include <GUIConstantsEx.au3>
    #include <StaticConstants.au3>
    #include <WindowsConstants.au3>
    #Region ### START Koda GUI section ### Form=

    ;Form(s)
    $Form1 = GUICreate("Alchemy Calculator", 399, 311, 249, 165)
    GUISetBkColor(0xFFFFFF)

    ;Input Field(s)
    $Lichbloom = GUICtrlCreateInput("", 16, 32, 105, 21)
    $Icethorn = GUICtrlCreateInput("", 152, 32, 105, 21)
    $FrostLotus = GUICtrlCreateInput("", 288, 32, 105, 21)
    $Goldclover = GUICtrlCreateInput("", 16, 104, 105, 21)
    $Pygmy = GUICtrlCreateInput("", 152, 104, 105, 21)
    $Life = GUICtrlCreateInput("", 288, 104, 105, 21)
    $FlaskofFrostwyrm = GUICtrlCreateInput("", 170, 170, 105, 15)
    $FlaskofEndlessRage = GUICtrlCreateInput("", 170, 200, 105, 15)
    $FlaskofPureMojo = GUICtrlCreateInput("", 170, 230, 105, 15)
    $FlaskofStoneblood = GUICtrlCreateInput("", 170, 260, 105, 15)

    ;Label(s)
    $Label1 = GUICtrlCreateLabel("Lichbloom Price", 16, 8, 79, 17)
    $Label2 = GUICtrlCreateLabel("Icethorn Price", 152, 8, 70, 17)
    $Label3 = GUICtrlCreateLabel("Frost Lotus Price", 288, 8, 83, 17)
    $Label5 = GUICtrlCreateLabel("Goldclover Price", 16, 80, 82, 17)
    $Label6 = GUICtrlCreateLabel("Pygmy Oil Price", 152, 80, 77, 17)
    $Label7 = GUICtrlCreateLabel("Crystallized Life Price", 288, 80, 103, 17)
    $Group1 = GUICtrlCreateGroup("Cost To Make", 16, 152, 273, 129)
    $Label4 = GUICtrlCreateLabel("Nicholas Sheahan 'Onemadorc' - H Gorefiend US ", 16, 288, 243, 17)
    $Label8 = GUICtrlCreateLabel("Frostwyrm", 30, 170, 105, 15)
    $Label9 = GUICtrlCreateLabel("Rage", 30, 200, 105, 15)
    $Label10 = GUICtrlCreateLabel("Mojo", 30, 230, 105, 15)
    $Label11 = GUICtrlCreateLabel("Stoneblood", 30, 260, 105, 15)


    ;Group(s)
    GUICtrlCreateGroup("", -99, -99, 1, 1)

    ;Button(s)
    $Calculate = GUICtrlCreateButton("Calculate", 312, 256, 73, 25, $WS_GROUP)

    GUISetState(@SW_SHOW)
    #EndRegion ### END Koda GUI section ###

    While 1
    $msg = GUIGetMsg()
    Select

    Case $msg = $Calculate
    $lichbloomPrice = GUICtrlRead($Lichbloom)
    $icethornPrice = GUICtrlRead($Icethorn)
    $goldcloverPrice = GUICtrlRead($Goldclover)
    $frostLotusPrice = GUICtrlRead($FrostLotus)
    $pygmyPrice = GUICtrlRead($Pygmy)
    $lifePrice = GUICtrlRead($Life)

    $FlaskofFrostwyrmPrice = ($icethornPrice * 5) + ($lichbloomPrice * 5) + $frostLotusPrice + 1
    GUICtrlSetData($FlaskofFrostwyrm, $FlaskofFrostwyrmPrice)



    $FlaskofStonebloodPrice = ($lichbloomPrice * 7) + ($lifePrice * 3) + $frostLotusPrice + 1
    GUICtrlSetData($FlaskofStoneblood, $FlaskofStonebloodPrice)



    $FlaskofPureMojoPrice = ($icethornPrice * 7) + ($pygmyPrice * 3) + $frostLotusPrice + 1
    GUICtrlSetData($FlaskofPureMojo, $FlaskofPureMojoPrice)



    $FlaskofEndlessRagePrice = ($lichbloomPrice * 7) + ($goldcloverPrice * 3) + $frostLotusPrice +1
    GUICtrlSetData($FlaskofEndlessRage, $FlaskofEndlessRagePrice)

    Case $msg = $GUI_EVENT_CLOSE

    Exit

    EndSelect
    WEnd

    [/spoiler]

  7. #7
    Neverdie00's Avatar Member
    Reputation
    3
    Join Date
    Oct 2008
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    a-squared 5.0.0.31 2010.07.18 Trojan.Win32.Inject.aoxz!A2
    AhnLab-V3 2010.07.18.00 2010.07.18 -
    AntiVir 8.2.4.12 2010.07.16 -
    Antiy-AVL 2.0.3.7 2010.07.15 -
    Authentium 5.2.0.5 2010.07.17 -
    Avast 4.8.1351.0 2010.07.18 -
    Avast5 5.0.332.0 2010.07.18 -
    AVG 9.0.0.836 2010.07.18 -
    BitDefender 7.2 2010.07.18 -
    CAT-QuickHeal 11.00 2010.07.16 -
    ClamAV 0.96.0.3-git 2010.07.18 -
    Comodo 5466 2010.07.18 -
    DrWeb 5.0.2.03300 2010.07.18 -
    eSafe 7.0.17.0 2010.07.15 -
    eTrust-Vet None None.. -
    F-Prot 4.6.1.107 2010.07.17 -
    F-Secure 9.0.15370.0 2010.07.18 Suspicious:W32/Malware!Gemini
    Fortinet 4.1.143.0 2010.07.18 -
    GData 21 2010.07.18 -
    Ikarus T3.1.1.84.0 2010.07.18 -
    Jiangmin 13.0.900 2010.07.18 -
    Kaspersky 7.0.0.125 2010.07.18 -
    McAfee 5.400.0.1158 2010.07.18 -
    McAfee-GW-Edition 2010.1 2010.07.16 -
    Microsoft 1.6004 2010.07.18 -
    NOD32 5288 2010.07.18 -
    Norman 6.05.11 None.. -
    nProtect 2010-07-18.02 2010.07.18 -
    Panda 10.0.2.7 2010.07.18 -
    PCTools 7.0.3.5 2010.07.18 -
    Prevx 3.0 2010.07.19 -
    Rising 22.56.04.04 2010.07.16 -
    Sophos 4.55.0 None.. -
    Sunbelt 6599 2010.07.18 -
    SUPERAntiSpyware 4.40.0.1006 2010.07.18 Trojan.Agent/Gen-Goo
    Symantec 20101.1.1.7 2010.07.18 -
    TheHacker 6.5.2.1.318 2010.07.16 -
    TrendMicro 9.120.0.1004 2010.07.18 -
    TrendMicro-HouseCall 9.120.0.1004 2010.07.18 -
    VBA32 3.12.12.6 2010.07.16 -
    ViRobot 2010.7.12.3932 2010.07.18 -
    VirusBuster 5.0.27.0 2010.07.18 -

    Sorry about not posting the virus scan in the first place, didn't realize people we're still showing interest in this, (albeit minor).

  8. #8
    Janitor99's Avatar Private
    Reputation
    1
    Join Date
    Jul 2010
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'am interested in it, is it safe to use?

    Thank you

Similar Threads

  1. Alchemy flask glitch 320 of any stats lvl 85!
    By madtoast in forum World of Warcraft Exploits
    Replies: 8
    Last Post: 04-02-2013, 07:49 PM
  2. [HALP] Power Leveling Price Calculator
    By ev1 in forum Programming
    Replies: 4
    Last Post: 09-05-2011, 06:09 PM
  3. [Profession] Alchemy Flask Cost Calculator [html]
    By topalsinek in forum World of Warcraft Guides
    Replies: 1
    Last Post: 06-24-2011, 01:05 AM
  4. [Gold] Alchemy Transmutes, Flasks and Pots!
    By zekky in forum World of Warcraft Guides
    Replies: 7
    Last Post: 05-29-2011, 10:04 PM
  5. [Spreadsheet] Flask Mats/Costs calculation.
    By WaCk0 in forum World of Warcraft Guides
    Replies: 8
    Last Post: 07-08-2010, 08:37 AM
All times are GMT -5. The time now is 05:57 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search