Search found 57 matches

by Mightykiller
25 Nov 2020, 19:48
Forum: Gaming Help (v1)
Topic: Send 2 keys together ingame
Replies: 1
Views: 305

Send 2 keys together ingame

Hello, i am trying to make a script to send 2 keys together at the same time using a hoktey but its not working. problem is it does not send them at the same time there is a delay between keys. also i want the hotkey to work while i am moving ingame so ill be pressing M for move and shift for speed....
by Mightykiller
10 Nov 2019, 15:27
Forum: Ask for Help (v1)
Topic: small script
Replies: 0
Views: 472

small script

this script reads game memory for a value using RHCP memory lib. and it only does action if the game window is active now my problem is this i need the checkbox if enabled to wait for the value from the memory script to match the value in the "KickList" and then if game is not active it will activat...
by Mightykiller
09 Nov 2019, 17:50
Forum: Ask for Help (v1)
Topic: Checkbox problem Topic is solved
Replies: 2
Views: 510

Re: Checkbox problem Topic is solved

Thank you very much.
by Mightykiller
08 Nov 2019, 19:14
Forum: Ask for Help (v1)
Topic: Checkbox problem Topic is solved
Replies: 2
Views: 510

Checkbox problem Topic is solved

I cant get this checkbox to work, when i press "Settings" button i get stats from my ini file "DisableLobbyInfo" if its 1 i want the checkbox to be checked, if its 0 i want the checkbox to be unchecked. Gui Add, Button, gSettings x88 y2 w80 h23, Settings Gui, Submit, NoHide Gui Show, w1000 h630, A t...
by Mightykiller
07 Nov 2019, 18:24
Forum: Ask for Help (v1)
Topic: Changing variable value Topic is solved
Replies: 5
Views: 1014

Re: Changing variable value Topic is solved

Yes now its working.
by Mightykiller
06 Nov 2019, 20:07
Forum: Ask for Help (v1)
Topic: Changing variable value Topic is solved
Replies: 5
Views: 1014

Re: Changing variable value Topic is solved

Thank you its working,i had to put the IniWrite line in the loop for it to write to the ini file or it would write nothing idk why. Save: KickList := "" IniDelete, %A_ScriptDir%\Settings.ini,Banned Users, Loop % LV_GetCount() { LV_GetText(RetrievedText, A_Index) IniWrite, %RetrievedText%,%A_ScriptDi...
by Mightykiller
05 Nov 2019, 19:29
Forum: Ask for Help (v1)
Topic: Changing variable value Topic is solved
Replies: 5
Views: 1014

Changing variable value Topic is solved

Hi, i am trying to change the variable value to match my listview value. for example my List value is: 1 2 3 4 I want the variable to store 1,2,3,4 when i press Save. KickList := "" Gui Add, Button,gBanList x5 y21 w90 h23, BAN LIST Gui, Submit, NoHide Gui Show, w1000 h660, Tool BanList: IniRead, Ban...
by Mightykiller
04 Nov 2019, 17:59
Forum: Ask for Help (v1)
Topic: Ini to Listview problem Topic is solved
Replies: 3
Views: 674

Re: Ini to Listview problem Topic is solved

Code: Select all

LV_Add("", A_LoopField)
Thank you.
by Mightykiller
03 Nov 2019, 17:57
Forum: Ask for Help (v1)
Topic: Ini to Listview problem Topic is solved
Replies: 3
Views: 674

Ini to Listview problem Topic is solved

My ini file contains: 1 2 3 4 5 What i get in my listview is: 12345 i want each value to be on a line in my list view, i cant get it to work. IniRead, BanListData, %A_ScriptDir%\BanList.ini,Data BanList: Gui, 2: default Gui, 2: Add, Button, gAddToBanList x84 y36 w80 h23, Add Gui, 2: Add, Button, gDe...
by Mightykiller
27 Oct 2019, 08:26
Forum: Ask for Help (v1)
Topic: High CPU usage Topic is solved
Replies: 2
Views: 870

Re: High CPU usage Topic is solved

adding a loop made cpu usage less, thank you.
by Mightykiller
25 Oct 2019, 16:21
Forum: Ask for Help (v1)
Topic: High CPU usage Topic is solved
Replies: 2
Views: 870

High CPU usage Topic is solved

I get a CPU usage of 10% every time, how can i get less cpu usage? This script is like a kickbot for a game, kicks unwanted players from the lobby. So i need the script to wait for the game to be active in fullscreen "not in background" and then reads data of slots and waits the player to join and t...
by Mightykiller
17 Oct 2019, 19:52
Forum: Gaming Help (v1)
Topic: Memory script help Topic is solved
Replies: 2
Views: 1548

Re: Memory script help Topic is solved

Thank you it works fine now.
by Mightykiller
14 Oct 2019, 18:46
Forum: Gaming Help (v1)
Topic: Memory script help Topic is solved
Replies: 2
Views: 1548

Memory script help Topic is solved

Hi i need help with this memory script. What i need is to check a pointer address value in String every time it changes and do action. This is the pointer static address i got: 106E00E8 "Storm.dll"+00055538 ->14FE0000 Screenshot_1.png This is the script i use before to check a string in a game, i ne...
by Mightykiller
19 Mar 2018, 16:07
Forum: Gaming Help (v1)
Topic: Read address value in bytes Topic is solved
Replies: 3
Views: 1169

Read address value in bytes Topic is solved

I want to read/edit address value in bytes like cheat engine, i couldn't find a way to read values in bytes.
I am using RHCP Memory library.
this is how my address looks like: Game.dll + 0x0000000
mh look.png
mh look.png (37.27 KiB) Viewed 1169 times
by Mightykiller
24 Feb 2018, 19:39
Forum: Gaming Help (v1)
Topic: Memory search not working ingame Topic is solved
Replies: 9
Views: 2867

Re: Memory search not working ingame Topic is solved

Yeah now it works thanks mate.
by Mightykiller
19 Feb 2018, 10:17
Forum: Gaming Help (v1)
Topic: Trying to get an aimbot working Topic is solved
Replies: 2
Views: 1090

Re: Trying to get an aimbot working Topic is solved

Try it like this IF NOT A_IsAdmin ; Runs script as Admin. { Run *RunAs "%A_ScriptFullPath%" ExitApp } #MaxThreadsPerHotkey, 2 CoordMode, Pixel, Screen #singleInstance, Force toggle = 0 F8:: ; press F8 to toggle the loop on/off. SoundBeep Toggle := !Toggle While Toggle { ;-- Begin of loop. PixelSearc...
by Mightykiller
18 Feb 2018, 21:11
Forum: Gaming Help (v1)
Topic: Game Mouse issue
Replies: 5
Views: 2563

Re: Game Mouse issue

I don't know how dllcall works but this is my script that i tried with your solution my mouse did not even move now xd NumPad1:: Stop:=0 i:=0 While Stop = 0 { PixelSearch, AimX, AimY,sx,sy,ex,ey, The_Color,2,Fast RGB if !ErrorLevel { tx:=AimX + 2 ty:=AimY + 2 MouveMouseRelative(tx,ty) { DllCall("mou...

Go to advanced search