Easter Event Eggs, whats the memeory address? menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 21
  1. #1
    ashleyww's Avatar Banned
    Reputation
    6
    Join Date
    Apr 2009
    Posts
    131
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Easter Event Eggs, whats the memeory address?

    Does anybody know what the Memory address are for the "Brightly Coloured Eggs"?

    I'm an experienced Autoit Coder, but I don't know how to get the memory address's thanks.

    I will post auto egg looter after its done, if someone can provide the address's

    Thanks

    Easter Event Eggs, whats the memeory address?
  2. #2
    Apoc's Avatar Angry Penguin
    Reputation
    1388
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yes, I approved this thread because I need a laugh. Have at it guys. (Closing in 20 min)

  3. #3
    SKU's Avatar Contributor
    Reputation
    306
    Join Date
    May 2007
    Posts
    565
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Apoc is bored!

  4. #4
    Apoc's Avatar Angry Penguin
    Reputation
    1388
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SKU View Post
    Apoc is bored!
    You have no idea...

  5. #5
    ashleyww's Avatar Banned
    Reputation
    6
    Join Date
    Apr 2009
    Posts
    131
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Why is this funny?

    I'm serious.

    Want me to post some code to prove I can code?

    Or you can just tell me how to get address's

  6. #6
    SKU's Avatar Contributor
    Reputation
    306
    Join Date
    May 2007
    Posts
    565
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bring it on, bitch!

  7. #7
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    "experienced Autoit Coder"

    I'm an experienced microwave user.


    " I will post auto egg looter after its done, if someone can provide the address's"

    You're gonna need a lot more than that. An IQ over 40 would be a start, come back and let us know when you've reached that goal, then we'll talk.

  8. #8
    ashleyww's Avatar Banned
    Reputation
    6
    Join Date
    Apr 2009
    Posts
    131
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Okay, here you go:

    Its a replacement for Vista's Built in UAC

    Code:
    #Region ;**** Directives created by AutoIt3Wrapper_GUI ****
    #AutoIt3Wrapper_outfile=Account Control.exe
    #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
    #include <ButtonConstants.au3>
    #include <ComboConstants.au3>
    #include <GUIConstantsEx.au3>
    #include <StaticConstants.au3>
    #include <WindowsConstants.au3>
    #include <date.au3>
    #include <File.au3>
    #include <Array.au3>
    #include <IE.au3>
    #include <Misc.au3>
    
    $version = "V 2.00"
    Opt("TrayMenuMode",1)   ; Default tray menu items will not be shown.
    
    TrayTip("Account Control " & $version, "Right click me for the menu.", 500, 1)
    TraySetToolTip("Account Control")
    
    Global $Timer = TimerInit(), $Check_Wait = 5 ; check all Trusted every 5 minutes ( some can close and new ones open )
    Global $Accountfile = "reportfile.acrf"
    Global $detected = _Date_Time_GetLocalTime()
    Global $list_Hold, $list, $newfile = ""; this will be where the process name is shown!
    
    If _Singleton(@scriptname,1) = 0 Then
        MsgBox(64, "* NOTE * ", "Account Control -  was already running  ", 5)
        Exit
    EndIf
    
    
    If FileExists($Accountfile) Then
        _FileReadToArray($Accountfile, $list)
    Else
        If MsgBox(262193, "First Run", "Please be sure all Running Programs are Trusted and Press OK      ") <> 1 Then Exit
        TrayTip("Account Control", "Thank you", 50, 1)
    	FileCreateShortcut(@ScriptFullPath, @StartupCommonDir & "\Account Control.lnk")
    	Set_List()
    EndIf
    ;Traymenu
    
    $menuEdit = TrayCreateItem("Editor Panel")
    TrayCreateItem("")
    $MenuInfo = TrayCreateItem("Information")
    $Menuwebsite = TrayCreateItem("www.StormTeq.co.uk")
    TrayCreateItem("")
    $MenuExit = TrayCreateItem("Exit")
    
    $Attentiongui = GUICreate("Attention - Account Control", 391, 71, @DesktopWidth - 403, @DesktopHeight - 133, BitOR($WS_MINIMIZEBOX, $WS_CAPTION, $WS_POPUP, $WS_GROUP, $WS_BORDER, $WS_CLIPSIBLINGS))
    $programlable = GUICtrlCreateLabel($newfile & " was detected at " & $detected & " as a new program!", 8, 8, 391, 17)
    $info1 = GUICtrlCreateLabel("Please select an option from the list below!", 8, 24, 204, 17)
    $TrustDone = GUICtrlCreateButton("Add as Trusted", 5, 40, 150, 25, 0)
    $UntrustDone = GUICtrlCreateButton("Add as Untrusted", 160, 40, 150, 25, 0)
    $UnsureDone = GUICtrlCreateButton("Unsure", 315, 40, 70, 25, 0)
    *****tState(@SW_HIDE)
    
    AdlibEnable("chk_Process")
    
    While 1
       $msg = TrayGetMsg()
    
        Switch $msg
            Case $menuedit
                _Editgui()
            Case $MenuInfo
                _infogui()
    		Case $MenuExit
    			If Not IsDeclared("iMsgBoxAnswer") Then Local $iMsgBoxAnswer
    			$iMsgBoxAnswer = MsgBox(308,"Account Control","Are you sure you wish to exit?" & @CRLF & @CRLF & "Exiting will leave your computer at risk!")
    				Select
    					Case $iMsgBoxAnswer = 6 ;Yes
    						Exit
    					Case $iMsgBoxAnswer = 7 ;No
    				EndSelect
    		Case $Menuwebsite
    			_IECreate("http://www.StormTeq.co.uk")	
        EndSwitch
    WEnd
    
    Func chk_Process()
        $list2 = ProcessList()
        If $list2[0][0] > $list_Hold Then Return Check_List()
        $list_Hold = $list2[0][0]
        If (Int(TimerDiff($Timer)) / (1000 * 60)) >= $Check_Wait Then Check_List()
    EndFunc   ;==>chk_Process
    
    Func Set_List()
        $list2 = ProcessList()
        For $i = 1 To UBound($list2) - 1
            If StringInStr($list2[$i][0], ".exe") Then FileWriteLine($Accountfile, $list2[$i][0] & "; Trusted")
        Next
        _FileReadToArray($Accountfile, $list)
    EndFunc   ;==>Set_List
    
    Func Check_List()
        AdlibDisable()
        $list = ""
        $list2 = ProcessList()
        _FileReadToArray($Accountfile, $list)
        For $x = 1 To UBound($list2) - 1
            $found = 0
            If Not StringInStr($list2[$x][0], ".exe") Then ContinueLoop
            For $i = 1 To UBound($list) - 1
                If StringInStr($list[$i], $list2[$x][0]) Then
                    If StringInStr($list[$i], "Untrusted") Then ProcessClose($list2[$x][0])
                    $found = 1
                    ExitLoop
                EndIf
            Next
            If Not $found Then Show_GUI($list2[$x][0])
        Next
        $list2 = ProcessList()
        $list_Hold = $list2[0][0]
        $Timer = TimerInit()
        AdlibEnable("chk_Process")
    EndFunc   ;==>Check_List
    
    Func Show_GUI($addnewfile = "")
        $newfile = $addnewfile
        *****tState(@SW_SHOW, $Attentiongui)
        $detected = _NowCalc();_Date_Time_GetLocalTime()
        GUICtrlSetData($programlable, $newfile & " was detected at " & $detected & " as a new program!")
    
        While 1
            $nMsg = GUIGetMsg()
            Switch $nMsg
                Case $GUI_EVENT_CLOSE
    			GUIDelete($EDITGUI)
    				
                Case $TrustDone
                    *****tState(@SW_HIDE, $Attentiongui)
    				FileWriteLine($Accountfile, $newfile & "; Trusted")
    				TrayTip("Account Control", "Thank you", 50, 1)
    				ExitLoop
    				
    			Case $UntrustDone
                    *****tState(@SW_HIDE, $Attentiongui)
    				FileWriteLine($Accountfile, $newfile & "; UnTrusted")
    				TrayTip("Account Control", "Thank you", 50, 1)
                    ExitLoop
    				
    			Case $UnsureDone
    				_IECreate("http://www.processlibrary.com/search/?q=" & $newfile)
            EndSwitch
        WEnd
    EndFunc   ;==>Show_GUI
    
    
    
    Func _Editgui()
    $file = FileRead("reportfile.acrf")
    
    #Region ### START Koda GUI section ### Form=
    $EDITGUI = GUICreate("Account Control - Editor", 561, 402, 193, 125)
    $Editbox = GUICtrlCreateEdit("", 8, 32, 546, 342)
    GUICtrlSetData($Editbox , $file)
    $Label1 = GUICtrlCreateLabel("The Account Control, Editor Panel has been designed so that you may change an option if you change your mind.", 8, 8, 545, 17)
    $Savebut = GUICtrlCreateButton("Save", 8, 376, 131, 25, 0)
    *****tState(@SW_SHOW)
    #EndRegion ### END Koda GUI section ###
    
    While 1
    	$nMsg = GUIGetMsg()
    	Switch $nMsg
    		Case $GUI_EVENT_CLOSE
    			GUIDelete($EDITGUI)
    			ExitLoop
    		Case $Savebut
    			FileDelete("reportfile.acrf")
    			FileWrite("reportfile.acrf", GUICtrlRead($Editbox))
    	EndSwitch
    WEnd	
    EndFunc
    
    
    Func _infogui()
    	
    $infogui = GUICreate("Account Control - Infomation panel", 618, 198, 193, 125)
    $Group1 = GUICtrlCreateGroup("Editor Panel:", 8, 8, 601, 89)
    $Label1 = GUICtrlCreateLabel("The Editor Panel has been designed so that you can use this program with ease. If you change you mind about a program", 16, 24, 582, 17)
    $Label2 = GUICtrlCreateLabel("you can simply edit the option that you originaly picked.", 16, 40, 263, 17)
    $Label3 = GUICtrlCreateLabel("To open the Editor Panel click the option Editor Panel in the menu.", 16, 72, 400, 17)
    GUICtrlCreateGroup("", -99, -99, 1, 1)
    $Group2 = GUICtrlCreateGroup("About Account Control:", 8, 112, 601, 73)
    $Label5 = GUICtrlCreateLabel("", 16, 144, 4, 4)
    $Label4 = GUICtrlCreateLabel("Original Idea came from Windows Vista's built-in User Account Control", 16, 128, 452, 17)
    
    $Label7 = GUICtrlCreateLabel("Made in Autoit v3", 16, 160, 87, 17)
    GUICtrlCreateGroup("", -99, -99, 1, 1)
    *****tState(@SW_SHOW)
    
    
    While 1
    	$nMsg = GUIGetMsg()
    	Switch $nMsg
    		Case $GUI_EVENT_CLOSE
    			GUIDelete($infogui)
    			ExitLoop
    	EndSwitch
    WEnd
    
    EndFunc

  9. #9
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That code is so leet! Both encapsulated and propeley inherited

  10. #10
    Apoc's Avatar Angry Penguin
    Reputation
    1388
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    send("F")
    
    while 1
    	send("u")
    wend
    I feel dirty...

  11. #11
    ashleyww's Avatar Banned
    Reputation
    6
    Join Date
    Apr 2009
    Posts
    131
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nesox View Post
    That code is so leet! Both encapsulated and propeley inherited

    Now do you believe me?

  12. #12
    SKU's Avatar Contributor
    Reputation
    306
    Join Date
    May 2007
    Posts
    565
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This is so mean. :/

    You ask us for a static memory address of a dynamically allocated object.
    Loop through the..

    nevermind lol.

  13. #13
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ashleyww View Post
    Now do you believe me?
    http://en.wikipedia.org/wiki/Sarcasm

    Also, you can't replace UAC you retard. It's a ****ing core component of the operating system which enforces security constraints which you have no control over at usermode. To even begin "replacing" UAC you'd have to write a driver which hooks crap all over the kernel (which is not an option on x64 unless you use a hypervisor).

    And oh, by the way, none of what I just described is possible in autoit.

    Just cause you can whip together some scripts to do trivial tasks does not make you a programmer.

    You fail. kthx.

  14. #14
    Zephir's Avatar Member
    Reputation
    8
    Join Date
    May 2007
    Posts
    44
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    search the AI forums. i started out coding for WoW using malu's ideas.

  15. #15
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The AutoIt forums won't contain the info she's asking for. These forums do, if she had used the search tool she would know that, but she's retarded, hence the trolling.

Page 1 of 2 12 LastLast

Similar Threads

  1. PoE & Ollydbg - what are the useful addresses?
    By Lightmaxime in forum Path of Exile
    Replies: 0
    Last Post: 03-29-2014, 03:35 PM
  2. [Easter Egg] Summoning The Vengeful Bambina!
    By Kudu in forum World of Warcraft Guides
    Replies: 18
    Last Post: 09-18-2009, 08:49 AM
  3. Fun easter egg on the WoW EU website
    By windybone in forum World of Warcraft General
    Replies: 4
    Last Post: 07-26-2009, 06:41 AM
  4. [GUIDE] Easter Event - Where to get Eggs (ally)
    By -=Demon=- in forum World of Warcraft Guides
    Replies: 11
    Last Post: 03-26-2008, 02:04 PM
  5. what the.....
    By Relz in forum Community Chat
    Replies: 4
    Last Post: 06-15-2006, 06:47 PM
All times are GMT -5. The time now is 07:46 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search