Results 1 to 2 of 2
  1. #1
    stupidname1's Avatar
    Join Date
    Jun 2011
    Gender
    female
    Posts
    77
    Reputation
    10
    Thanks
    4
    My Mood
    Breezy

    Buried Sorrow Script

    Ok so i have a script i edited to work for me for Buried Sorrow, as you can see it was originally for Blood Lord and as much as i would like to give credits, the archives have been cleared and i can no longer find the original thread and owner of this. All the thanks and the ; code etc in the middle was not modified by me,
    Its for the any windows resolution that can go to 1200-768 or thereaboutish i dont know exactly off the top of my head.
    I edited only things like the keys for godmode, which for me is the previous version of pies binds where , and . were godmode and 1 hit kill, and i also edited the path the bot takes.

    As you can see it can be made to be fairly universal, and it was. It worked perfectly for me for a few weeks to the point where i edited another one for use in strong drink. However as of yesterday it refused to find the replay button, while the exact same codei made for strong drink with minor path modifications and nothing else changed works perfectly.

    Ive tried many things for instance repasting the original script and trying to get that to work, to fiddling with the code and verifying the pixel coords and colour, to restarting my computer on the offchance that would help.

    It is not my intention to leech things and claim them as my own, if you recognize this script as your own work and dont want it to be posted, let me know and i will remove it.

    If any of you take a look at this code and see where i might be going wrong i would greatly appreciate the input.

    Also sorry for the wall of text, i didnt realize i was so wordy o.o


    Code:
    ;~ Thanks to "pyrobyant" for base code
    ;~ Thanks to "zippo2011" for One hit kill
    ;~ Thanks to "Nunya" for perm binds and Ez Boss
    ;~ Thanks to "FAILXpert" for base of script
    Global $Pause
    HotKeySet("{F10}", "Pause")
    HotKeySet("{F9}", "BloodLord")
    
    While 1
    	WinWaitActive("Vindictus", "")
    WEnd
    
    Func BloodLord()
    	While 1
    		WinMove("Vindictus", "", 0, 0)
    		$counter = 0
    		Do
    			$counter = $counter + 1
    			Sleep(1000)
    			PixelSearch(45, 626, 65, 646, 0x941717, 2)
    		Until Not @error And $counter < 60
    		Sleep(1000)
    		Send("{ALT DOWN}")
    		MouseClick("Left", 97, 677, 2)
    		Send("{ALT UP}")
    		Send("{NUMPAD4}");starting dungeon speediness
    		Sleep(1000)
    
    		$counter = 0
    		Do
    			$counter = $counter + 1
    			Sleep(1000)
    			PixelSearch(403, 202, 423, 272, 0x000000, 2)
    		Until Not @error And $counter < 60
    		Sleep(5000) ; to make it sleep for 4 min, leaderboards 
    		Send("{Numpad0}") ; Changelevel
    		Sleep(600)
    		Send("{Numpad0}") ; Changelevel
    		Sleep(10000)
    		Send("{NUMPAD4}") ; speediness
    		Sleep(1000)
    		Send("{,}") ; Godmode
    		Sleep(1000)
    		Send("{.}") ; one hit kill
    		Sleep(1000)
    		Send("{8}") ; stickies
    		Sleep (1000)
    		Send("{a down}") ; Move forward 6 seconds
    		Sleep(200)
    		Send("{a up}") ; Stop
    		Sleep(1000)
    		Send("{w down}") ; Move forward 6 seconds
    		Sleep(1000)
    		Send("{w up}") ; Stop
    		Sleep(1000)
    		Send("{d down}") ; Move forward 6 seconds
    		Sleep(200)
    		Send("{d up}") ; Stop
    		Sleep(1000)
    		Send("{w down}") ; Move forward 6 seconds
    		Sleep(3000)
    		Send("{w up}") ; Stop
    		Sleep(1000)
    
    		;Send("{NUMPAD4}");stopping speed hack
    
    ;~ 	$counter = 0
    ;~ 	Do
    ;~ 		$counter = $counter + 1
    ;~ 		Sleep(1000)
    ;~ 		PixelSearch(769, 25,789, 45,0x970201)
    ;~ 	Until not @error and $counter < 60
    ;~ 	Sleep(1000)
    ;~ 	Send("{NUMPAD8}");skipping first level
    ;~ 	Sleep(1000)
    
    ;~ 	$counter = 0
    ;~ 	Do
    ;~ 		$counter = $counter + 1
    ;~ 		Sleep(100)
    ;~ 		PixelSearch(640, 330,658, 343,0x000000,2)
    ;~ 	Until not @error and $counter < 600
    ;~ 	Sleep(1000)
    
    ;~ 	$counter = 0
    ;~ 	Do
    ;~ 		$counter = $counter + 1
    ;~ 		Sleep(100)
    ;~ 		PixelSearch(1164, 165,1184, 185,0x9CE700,2)
    ;~ 	Until not @error and $counter < 600
    ;~ 	Sleep(1000)
    
    		; set your key bound to cc_set_subweapon handbomb_lvl2 999
    		$counter = 0
    		Do
    			Send("{f}") ; pull out stickie
    			Sleep(300)
    			Send("{e}") ; chuck dat stickie
    			Sleep(300)
    			Send("{f}") ; pull out stickie
    			Sleep(300)
    			Send("{e}") ; chuck dat stickie
    			Sleep(300)
    			Send("{f}") ; pull out stickie
    			Sleep(300)
    			Send("{e}") ; chuck dat stickie
    			Sleep(300)
    			Send("{f}") ; pull out stickie
    			Sleep(300)
    			Send("{e}") ; chuck dat stickie
    			Sleep(300)
    			$counter = $counter + 1
    			Sleep(1000)
    			PixelSearch(512, 586, 532, 606, 0x466F95, 1);throw bombs until clear game
    		Until Not @error And $counter < 60
    		Sleep(5000)
    		Send("{ALT DOWN}")
    		MouseClick("Left", 295, 729, 1)
    		Send("{ALT UP}")
    		Sleep(8000)
    	WEnd
    EndFunc   ;==>BloodLord
    
    Func Pause()
    	$Pause = Not $Pause
    	While $Pause
    		Sleep(100)
    		ToolTip('Script is PAUSED, press F10 to UNPAUSE', 0, 0)
    	WEnd
    	ToolTip("")
    EndFunc   ;==>Pause


    Edit - found the original author, riceking... i think lol
    Last edited by stupidname1; 07-26-2011 at 02:30 AM.

  2. #2
    stupidname1's Avatar
    Join Date
    Jun 2011
    Gender
    female
    Posts
    77
    Reputation
    10
    Thanks
    4
    My Mood
    Breezy
    no one has any ideas why this isnt working for me, when i have the exact same script working in another map? D:

Similar Threads

  1. [Request] Chicken Script + Bury Bones
    By ltkort213 in forum Runescape Hacks / Bots
    Replies: 1
    Last Post: 03-12-2011, 06:30 PM
  2. Habbohotel Scripts
    By h0ang in forum General Game Hacking
    Replies: 8
    Last Post: 05-18-2007, 05:19 AM
  3. Interlocking: Sorrow
    By Chaer in forum Art & Graphic Design
    Replies: 14
    Last Post: 11-19-2006, 09:47 AM
  4. Replies: 1
    Last Post: 07-05-2006, 06:20 AM
  5. OMG I SO STUCK!!!(Java Script "n" html problem
    By jeremywilms in forum Programming
    Replies: 11
    Last Post: 06-15-2006, 01:23 PM