(18 ratings)
Sharpshooter Online v1.20b Release
- Vast majority of changes and new additions, and will be noted at a later time.
Sharpshooter Online Beta v1.1 Release
- Knife ability has been tweaked and now also appropriately plays secondary sound when stabbed.
- Grenade explosion timing has been shortened by 1 sec.
- Tower steps are now aligned correctly, directly approach them to climb up.
- Game will now end after a team reaches a score of 50 with 6-10 players including computers, and a score of 25 with 1-5 players followed by a short victory and defeat cinematic.
- Health bars have been removed, and no longer appear on your screen.
- A few miscellaneous tweaks and fixes.
function SetCameraZ takes player whichPlayer, real z returns nothing
if ( GetLocalPlayer() == whichPlayer ) then
set z = GetCameraField(CAMERA_FIELD_ZOFFSET)+z-GetCameraTargetPositionZ()
call SetCameraField(CAMERA_FIELD_ZOFFSET,z,- 0.01)
call SetCameraField(CAMERA_FIELD_ZOFFSET,z,0.01)
endif
endfunction
Don't ask for rep,it's against the rulesHey World!!! I have an idea!! Autohotkey!!!! (its a program to remap keys) map the mouse axis to the key arrows,and map the attack ability to the mouse click. YOU ARE WELCOME WORLD!!
Here take the script!
#SingleInstance Force
#NoEnv
SendMode Play
#IfWinActive Warcraft III
SetTitleMatchMode 2
#IfWinActive, Warcraft
SetTimer, monitorMouse, 20
return
q::SetTimer, monitorMouse, Off
monitorMouse:
MouseGetPos, start_x, start_y
Sleep 10
MouseGetPos, end_x, end_y
If (start_x > end_x) ; if end_x is further to the left
Send {A}
If (start_x < end_x) ; if end_x is further to the right
Send {D}
If (start_y > end_y) ; if end_y is further to the top
Send {W}
If (start_y < end_y) ; if end_y is further to the bottom
Send {S}
return
if some one find this useful add a rep to me plz ty!
But i don't advertise "my" stuff,this is a program that will actually help,in the same way a sound editor will help or a photo editor will help,its a key "editor" for your keyboard,you just map keys or change them.and in this particular case you can map keyboard keys to your mouse axis,so this map will work like an actual fps map.Don't ask for rep,it's against the rules
Also don't advertise your stuff on other people's maps