Mouse wheel button

04/21/2007 23:43 hieitk#1
*uptaded*
Added SELL option (tested on 1024*768)

This mini program will allow your wheel mouse button to make 4 different actions:
(1) Jump: press wheel mouse button and u'll jump
(is like doing CTRL+left click)
(2) Drop: press the wheel button over an item on your inventory to drop it
(3) F10: press wheel button to activate some actions or pots on F10 key
(4) Sell: press the wheel button over an item on your inventory to sell it to an NPC

To change between modes use:
Wheel Up / Wheel down

Is really easy to use and after pressing "OK" will go to the system tray, while in [Conquer2.0] window, mouse wheel will respond to Mode selected, but in any other window mouse wheel will have normal functions like scroll down/up (on internet explorer) so u can just leave it on system tray.
[Only registered and activated users can see links. Click Here To Register...]
v1.0 made on AutoIt: 56 downloads
v1.1 made on AHK: 417 downloads
v1.2 made on AHK: last version updated 19/06/07
04/22/2007 00:30 GreenPencil#2
File: mousewheel.rar
Status:
OK
MD5 d56850be21bc83529e20aa99afad120b
Packers detected:
PE_PATCH.UPX, UPX
Scanner results
Scan taken on 21 Apr 2007 22:26:33 (GMT)
AntiVir
Found nothing
ArcaVir
Found nothing
Avast
Found nothing
AVG Antivirus
Found nothing
BitDefender
Found nothing
ClamAV
Found nothing
Dr.Web
Found nothing
F-Prot Antivirus
Found nothing
F-Secure Anti-Virus
Found nothing
Fortinet
Found nothing
Kaspersky Anti-Virus
Found nothing
NOD32
Found nothing
Norman Virus Control
Found nothing
Panda Antivirus
Found nothing
Rising Antivirus
Found nothing
VirusBuster
Found nothing
VBA32
Found nothing

seems clean.... i'll try it out a little later
04/22/2007 01:12 kkaosbudbud#3
seems pretty cool but i dont think that would be using it
04/22/2007 01:23 coolboy0286#4
can change mode 1 to make scrolling mouse make you jump? Would be must easier.

O wait, scrolling is for zooming.... nm
04/22/2007 01:26 hieitk#5
Quote:
Originally posted by kkaosbudbud+Apr 22 2007, 01:12--></span><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td>QUOTE (kkaosbudbud @ Apr 22 2007, 01:12)</td></tr><tr><td id='QUOTE'> seems pretty cool but i dont think that would be using it [/b]

Is ok, I just leave it here if anyone wanna try it

I already got use to jump without using the left hand xD
and drop function too =P

I dont use the F10 option but I added it just becuz it was easy lol

<!--QuoteBegin--coolboy0286
@Apr 22 2007, 01:23
can change mode 1 to make scrolling mouse make you jump? Would be must easier.

O wait, scrolling is for zooming.... nm
[/quote]
exactly =(
04/22/2007 09:25 Sk0rPi0n#6
lol! +1k for that :D ill use it (i hate it to hold CTRL all the time xD)
04/22/2007 20:47 grishathebest#7
Didnt try it yet but Im sure its good :)

Just a request/question, someone mentioned to use the scroll button. I have for example two wheels. Is it possible for you to make one wheel scroll used to jump? If not, then is it possible to change the zoom to jump (fuck zoom...i never use it anyways)- scroll jump would be the best invention that CO ever had :)

Ty in advance :)
04/22/2007 20:57 hieitk#8
Quote:
Originally posted by grishathebest@Apr 22 2007, 20:47
Didnt try it yet but Im sure its good :)

Just a request/question, someone mentioned to use the scroll button. I have for example two wheels. Is it possible for you to make one wheel scroll used to jump? If not, then is it possible to change the zoom to jump (fuck zoom...i never use it anyways)- scroll jump would be the best invention that CO ever had :)

Ty in advance :)
maybe I can make one to jump and the other to drop, is that ok?

answer me and ill try to make one for you (i have only 1 wheel)
now im adding some things to my bot so Ill work on that later =/

btw, check my semitransparent skin on my sig ^^
04/23/2007 05:45 junior58#9
Can we get the source code???
04/23/2007 05:47 hieitk#10
Quote:
Originally posted by junior58@Apr 23 2007, 05:45
Can we get the source code???
of course ^^
04/23/2007 06:09 hugezeldafan94#11
With my mouse, when you push the wheel, it switches to the next program you have open lol.....so Idk if it would work or not....but I may use this when I'm home alone and I eat at the computer.... :D
04/23/2007 06:19 hieitk#12
Quote:
Originally posted by hugezeldafan94@Apr 23 2007, 06:09
With my mouse, when you push the wheel, it switches to the next program you have open lol.....so Idk if it would work or not....but I may use this when I'm home alone and I eat at the computer.... :D
wow, thats cool

I use ALT+TAB all the time to do that =/

Im sorry to say this xD but I think it wont work correctly for you, to make your char jump when u press wheel button I had to make a loop that check if u have pressed the wheel button, but by then probably ull be on another window already lol

so bad I cant use mouse wheel as a hotkey, in that case the program would jump and forget about switching to the next program
04/25/2007 04:26 grishathebest#13
Quote:
Originally posted by hieitk@Apr 22 2007, 20:57
[QUOTE
maybe I can make one to jump and the other to drop, is that ok?

answer me and ill try to make one for you (i have only 1 wheel)
now im adding some things to my bot so Ill work on that later =/

btw, check my semitransparent skin on my sig ^^

[/quote]
It would be awesome :)

GJ on the skin 2!
04/25/2007 18:57 evanxxxm#14
not sure if it will work for autoit.
but if its autohotkey compiler...its pretty easy to perform a wheeldown click


Code:
*WheelDown&#58;&#58;
{
Send, {Control down}
Click
Send, {Control up}
}
Code:
*&#34;hotkey part&#58; you can put any key here, including F series or mouse clicks&#34;&#58;&#58;
{
function part&#58; this will detect if u click the &#34;hotkey&#34;, the function will perform
}
04/25/2007 21:01 hieitk#15
Quote:
Originally posted by evanxxxm@Apr 25 2007, 18:57
not sure if it will work for autoit.
but if its autohotkey compiler...its pretty easy to perform a wheeldown click


Code:
*WheelDown&#58;&#58;
{
Send, {Control down}
Click
Send, {Control up}
}
Code:
*&#34;hotkey part&#58; you can put any key here, including F series or mouse clicks&#34;&#58;&#58;
{
function part&#58; this will detect if u click the &#34;hotkey&#34;, the function will perform
}
that certainly would work ^^ btw i saw ur tao program and saw it works while minimized so i downloaded autohotkey, seems rly similar with autoit =P

nice work on tao program

i will modify this code,and ill add it to my tro leveler (KIRA bot) on autohotkey and see if i can make it work minimized, i dont think i can serach for pixel while minimized though =/

<hr>Append on Apr 25 2007, 22:51<hr> *updated*
or remade? lol

yeah, remade in another language, pretty similar though =/

now u can change between modes with wheel up/down ^^