Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 38
  1. #16
    RiftFr's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    78
    Reputation
    10
    Thanks
    43
    My Mood
    Amazed
    Is it detected? Or is it just an AHK script which means it is hardly detectable or undetectable?

  2. #17
    BlackTrunk's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Location
    Russia
    Posts
    15
    Reputation
    10
    Thanks
    3
    My Mood
    Cool
    Quote Originally Posted by mamadou25 View Post
    i use ur script + this script :
    Paladins: Champions Of The Realm Hack
    init:
    #NoEnv
    #SingleInstance, Force
    #Persistent
    #InstallKeybdHook
    #UseHook
    #KeyHistory, 0
    #HotKeyInterval 1
    #MaxHotkeysPerInterval 2500

    version = 3.0
    traytip, Palabot %version%, Running in background!, 5, 1
    Menu, tray, NoStandard
    Menu, tray, Tip, Palabot %version%
    Menu, tray, Add, Palabot %version%, return
    Menu, tray, Add
    Menu, tray, Add, Help, info
    Menu, tray, Add, Exit, exit
    SetKeyDelay,-1, 1
    SetControlDelay, -1
    SetMouseDelay, -1
    SetWinDelay,-1
    SendMode, InputThenPlay
    SetBatchLines,-1
    ListLines, Off
    CoordMode, Pixel, Screen, RGB
    CoordMode, Mouse, Screen
    PID := DllCall("GetCurrentProcessId")
    Process, Priority, %PID%, High

    EMCol := 0xF94949
    ColVn := 61.84
    AntiShakeX := (A_ScreenHeight // 160)
    AntiShakeY := (A_ScreenHeight // 128)
    ZeroX := 960
    ZeroY := 540
    CFovX := 45
    CFovY := 45
    ScanL := ZeroX - CFovX
    ScanT := ZeroY
    ScanR := ZeroX + CFovX
    ScanB := ZeroY + CFovY
    NearAimScanL := ZeroX - AntiShakeX
    NearAimScanT := ZeroY - AntiShakeY
    NearAimScanR := ZeroX + AntiShakeX
    NearAimScanB := ZeroY + AntiShakeY

    Loop, {
    KeyWait, LButton, D
    PixelSearch, AimPixelX, AimPixelY, NearAimScanL, NearAimScanT, NearAimScanR, NearAimScanB, EMCol, ColVn, Fast RGB
    if (!ErrorLevel=0) {
    loop, 1 {
    PixelSearch, AimPixelX, AimPixelY, ScanL, ScanT, ScanR, ScanB, EMCol, ColVn, Fast RGB
    AimX := AimPixelX - ZeroX
    AimY := AimPixelY - ZeroY
    DirX := -1
    DirY := -1
    If ( AimX > 0 ) {
    DirX := 1
    }
    If ( AimY > 0 ) {
    DirY := 1
    }
    AimOffsetX := AimX * DirX
    AimOffsetY := AimY * DirY
    MoveX := Floor(( AimOffsetX ** ( 1 / 2 ))) * DirX
    MoveY := Floor(( AimOffsetY ** ( 1 / 2 ))) * DirY
    DllCall("mouse_event", uint, 1, int, MoveX * 1.45, int, MoveY, uint, 0, int, 0)
    }
    }
    }

    Pause:: pause
    return:
    goto, init

    info:
    msgbox, 0, Palabot %version%, Made by erik96 `nGame must be running in borderless windowed mode.`nPress pause key to pause this program.`nLeft click automatically aims down target near the center of the screen.`nRecommended for near distance.`nTry 1920X1080 as resulution works best for me.
    return

    exit:
    exitapp
    AHK Script?

  3. #18
    RiftFr's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    78
    Reputation
    10
    Thanks
    43
    My Mood
    Amazed
    Quote Originally Posted by BlackTrunk View Post
    AHK Script?
    Yes, it is an AHK script for Paladins from another website, the creator is Erik96

  4. #19
    yafi's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    0
    The aim just goes down, same with the AHK script posted in the reply above me :/

  5. #20
    iSnowKappa's Avatar
    Join Date
    Nov 2016
    Gender
    female
    Posts
    9
    Reputation
    10
    Thanks
    0
    is there any champ/esp hacks?

  6. #21
    Spadde's Avatar
    Join Date
    Oct 2016
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by mamadou25 View Post
    i use ur script + this script :
    Paladins: Champions Of The Realm Hack
    init:
    #NoEnv
    #SingleInstance, Force
    #Persistent
    #InstallKeybdHook
    #UseHook
    #KeyHistory, 0
    #HotKeyInterval 1
    #MaxHotkeysPerInterval 2500

    version = 3.0
    traytip, Palabot %version%, Running in background!, 5, 1
    Menu, tray, NoStandard
    Menu, tray, Tip, Palabot %version%
    Menu, tray, Add, Palabot %version%, return
    Menu, tray, Add
    Menu, tray, Add, Help, info
    Menu, tray, Add, Exit, exit
    SetKeyDelay,-1, 1
    SetControlDelay, -1
    SetMouseDelay, -1
    SetWinDelay,-1
    SendMode, InputThenPlay
    SetBatchLines,-1
    ListLines, Off
    CoordMode, Pixel, Screen, RGB
    CoordMode, Mouse, Screen
    PID := DllCall("GetCurrentProcessId")
    Process, Priority, %PID%, High

    EMCol := 0xF94949
    ColVn := 61.84
    AntiShakeX := (A_ScreenHeight // 160)
    AntiShakeY := (A_ScreenHeight // 128)
    ZeroX := 960
    ZeroY := 540
    CFovX := 45
    CFovY := 45
    ScanL := ZeroX - CFovX
    ScanT := ZeroY
    ScanR := ZeroX + CFovX
    ScanB := ZeroY + CFovY
    NearAimScanL := ZeroX - AntiShakeX
    NearAimScanT := ZeroY - AntiShakeY
    NearAimScanR := ZeroX + AntiShakeX
    NearAimScanB := ZeroY + AntiShakeY

    Loop, {
    KeyWait, LButton, D
    PixelSearch, AimPixelX, AimPixelY, NearAimScanL, NearAimScanT, NearAimScanR, NearAimScanB, EMCol, ColVn, Fast RGB
    if (!ErrorLevel=0) {
    loop, 1 {
    PixelSearch, AimPixelX, AimPixelY, ScanL, ScanT, ScanR, ScanB, EMCol, ColVn, Fast RGB
    AimX := AimPixelX - ZeroX
    AimY := AimPixelY - ZeroY
    DirX := -1
    DirY := -1
    If ( AimX > 0 ) {
    DirX := 1
    }
    If ( AimY > 0 ) {
    DirY := 1
    }
    AimOffsetX := AimX * DirX
    AimOffsetY := AimY * DirY
    MoveX := Floor(( AimOffsetX ** ( 1 / 2 ))) * DirX
    MoveY := Floor(( AimOffsetY ** ( 1 / 2 ))) * DirY
    DllCall("mouse_event", uint, 1, int, MoveX * 1.45, int, MoveY, uint, 0, int, 0)
    }
    }
    }

    Pause:: pause
    return:
    goto, init

    info:
    msgbox, 0, Palabot %version%, Made by erik96 `nGame must be running in borderless windowed mode.`nPress pause key to pause this program.`nLeft click automatically aims down target near the center of the screen.`nRecommended for near distance.`nTry 1920X1080 as resulution works best for me.
    return

    exit:
    exitapp
    I tried to use it, didnt work out, my aim just went down all the time, can you rerwrite this script for me to 1280x1024 res?

  7. #22
    loveafear's Avatar
    Join Date
    Oct 2016
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Is there any aimbot hack, I didnt acutally got the point of this hack.It doesnt really helps me....

  8. #23
    WILLIAM12138's Avatar
    Join Date
    Jan 2018
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Detected, got banned with 2 matches only in new account.

  9. #24
    mogambo1's Avatar
    Join Date
    Aug 2017
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    hello please help i just downloaded it.and i dont know how to use it/

  10. #25
    Wowzies's Avatar
    Join Date
    Mar 2018
    Gender
    male
    Location
    You're mother
    Posts
    27
    Reputation
    10
    Thanks
    1
    My Mood
    Angelic
    Hey it say's i don't have permission to access it mind helping me out my man?

  11. #26
    KebabChub's Avatar
    Join Date
    Mar 2018
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    My Mood
    Angelic
    Its broken

  12. #27
    chewibaba's Avatar
    Join Date
    Mar 2018
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    My Mood
    Mellow
    i got this MPGH dependent en if i start palladins nothing happens

  13. #28
    ShoVik's Avatar
    Join Date
    Apr 2017
    Gender
    male
    Posts
    30
    Reputation
    10
    Thanks
    3
    doesn't work :/

  14. #29
    Wowzies's Avatar
    Join Date
    Mar 2018
    Gender
    male
    Location
    You're mother
    Posts
    27
    Reputation
    10
    Thanks
    1
    My Mood
    Angelic
    It still, works for me can you say something more friendly like "Doesn't work for me" so people don't get the wrong idea i wan't this hack to get attention because i think that's what is deserves it's one of those pure hacks with no bullshit

  15. #30
    Hentai's Avatar
    Join Date
    Apr 2016
    Gender
    male
    Location
    Turkey
    Posts
    7,801
    Reputation
    660
    Thanks
    4,194
    My Mood
    Angelic
    Quote Originally Posted by Wowzies View Post
    It still, works for me can you say something more friendly like "Doesn't work for me" so people don't get the wrong idea i wan't this hack to get attention because i think that's what is deserves it's one of those pure hacks with no bullshit

    Provide proof as soon as possibly, before I consider it as patched.

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. [Request] Paladins Champions Of The Realm Aimbot
    By nikskukka in forum Hack Requests
    Replies: 3
    Last Post: 10-31-2017, 03:11 PM
  2. Paladins: Champions Of The Realm
    By ETHerthethaethaetheh in forum Hack Requests
    Replies: 6
    Last Post: 12-17-2016, 11:43 AM
  3. 3 Keys Paladins: Champions of the Realm
    By minebill in forum Giveaways
    Replies: 2
    Last Post: 06-22-2016, 11:47 PM
  4. [WTS] Gigantic + Paladins: Champions of the Realm BETA KEYS
    By mybimbim in forum Selling Accounts/Keys/Items
    Replies: 0
    Last Post: 02-09-2016, 07:37 AM
  5. [ASK]Paladins : Champions of the realm
    By AeonWars in forum General
    Replies: 1
    Last Post: 12-11-2015, 11:16 PM