Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Kal Online
You last visited: Today at 21:51

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Pimp hack

Discussion on Pimp hack within the Kal Online forum part of the MMORPGs category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Dec 2012
Posts: 75
Received Thanks: 12
Exclamation Pimp hack

I don't know where to post that exactly , but let's say we are in the current place.

I'm using HighGamer's bot and already trying it out in Cruel Kal and it works well for me .

I've got the latest files from HighGame , but seems that auto pimp hack not works well , it only works but spend 2 polish and 1 talisman of attack and then its stop .

My question is . Why don't it add all talisman of attacks and all polish stones which are in my Inventroy ?

Should I make something manually ? here is the .txt file maybe someone help me out^^

PHP Code:
const Daemon = require('./Daemon')
const 
InventoryItem = require('../data-store/InventoryItem')
const 
SendPackets = require('../send-packets/packets')
const 
RecvPackets = require('../recv-packets/packets')
const { 
Id } = require('../data-types')

module.exports = class AutoPimp extends Daemon {

    
isActive() {
        return 
this.kalClient.settings.autoPimpWeapon || this.kalClient.settings.autoPimpArmor
    
}

    
onDeActivated() {
        
this.actualPimpItem null
        this
.packetItemId null
    
}

    
onTimeTick() {
        if (!
this.isActive()) return
        const {
usecases} = this.kalClient
        
const gui this.kalClient.settings.gui
        
        
if(!this.actualPimpItem) return
        
        
//let polishingStone = usecases.ItemUser.getItemByIndex(Id.fromValue(481))
        //let attackTalisman = usecases.ItemUser.getItemByIndex(Id.fromValue(218))
        //let magicTalisman = usecases.ItemUser.getItemByIndex(Id.fromValue(219))
                        
        
let polishingStone = Array.from(this.kalClient.dataStore.inventoryItems.values()).find(item => item.Index.value == 481 && item.Amount.value >= )
        
let attackTalisman = Array.from(this.kalClient.dataStore.inventoryItems.values()).find(item => item.Index.value == 218 && item.Amount.value >= 1)
        
let magicTalisman = Array.from(this.kalClient.dataStore.inventoryItems.values()).find(item => item.Index.value == 219 && item.Amount.value >= 1)
        
        
let talismanOfAccuracy = Array.from(this.kalClient.dataStore.inventoryItems.values()).find(item => item.Index.value == 220 && item.Amount.value >= )
        
let talismanOfDefense = Array.from(this.kalClient.dataStore.inventoryItems.values()).find(item => item.Index.value == 221 && item.Amount.value >= )
        
let talismanOfEvasion = Array.from(this.kalClient.dataStore.inventoryItems.values()).find(item => item.Index.value == 222 && item.Amount.value >= )
        
        if (!
polishingStone || (!attackTalisman && !magicTalisman && !talismanOfAccuracy && !talismanOfDefense && !talismanOfEvasion)) {
            
console.log("Turned off Auto Pimp, missing materials to complete")
            
gui.autoPimpWeaponCheckbox.checked false
            gui
.autoPimpArmorCheckbox.checked false
            this
.actualPimpItem null
            this
.packetItemId null
            
return
        }
        
        if(
this.kalClient.settings.autoPimpWeapon) {
            if(
attackTalisman && polishingStone) {
                
SendPackets.UseOnItem.itemId(polishingStonethis.actualPimpItemnull).send(this.kalClient.socketthis.kalClient.dataStore)
                
Atomics.wait(new Int32Array(new SharedArrayBuffer(4)), 002000); //Sleep 450 milliseconds per walk.
                
SendPackets.UseOnItem.itemId(attackTalismanthis.actualPimpItem0).send(this.kalClient.socketthis.kalClient.dataStore)
                
Atomics.wait(new Int32Array(new SharedArrayBuffer(4)), 002000); //Sleep 450 milliseconds per walk.
            
}
        
            if(
magicTalisman && polishingStone) {
                
SendPackets.UseOnItem.itemId(polishingStonethis.actualPimpItemnull).send(this.kalClient.socketthis.kalClient.dataStore)
                
Atomics.wait(new Int32Array(new SharedArrayBuffer(4)), 002000); //Sleep 450 milliseconds per walk.
                
SendPackets.UseOnItem.itemId(magicTalismanthis.actualPimpItem0).send(this.kalClient.socketthis.kalClient.dataStore)
                
Atomics.wait(new Int32Array(new SharedArrayBuffer(4)), 002000); //Sleep 450 milliseconds per walk.
            
}
            
            if(
talismanOfAccuracy && polishingStone) {
                
SendPackets.UseOnItem.itemId(polishingStonethis.actualPimpItemnull).send(this.kalClient.socketthis.kalClient.dataStore)
                
Atomics.wait(new Int32Array(new SharedArrayBuffer(4)), 002000); //Sleep 450 milliseconds per walk.
                
SendPackets.UseOnItem.itemId(talismanOfAccuracythis.actualPimpItem0).send(this.kalClient.socketthis.kalClient.dataStore)
                
Atomics.wait(new Int32Array(new SharedArrayBuffer(4)), 002000); //Sleep 450 milliseconds per walk.
            
}
        }
        
        if(
this.kalClient.settings.autoPimpArmor) {
            if(
talismanOfDefense && polishingStone) {
                
SendPackets.UseOnItem.itemId(polishingStonethis.actualPimpItemnull).send(this.kalClient.socketthis.kalClient.dataStore)
                
Atomics.wait(new Int32Array(new SharedArrayBuffer(4)), 002000); //Sleep 450 milliseconds per walk.
                
SendPackets.UseOnItem.itemId(talismanOfDefensethis.actualPimpItem0).send(this.kalClient.socketthis.kalClient.dataStore)
                
Atomics.wait(new Int32Array(new SharedArrayBuffer(4)), 002000); //Sleep 450 milliseconds per walk.
            
}
              
            if(
talismanOfEvasion && polishingStone) {
                
SendPackets.UseOnItem.itemId(polishingStonethis.actualPimpItemnull).send(this.kalClient.socketthis.kalClient.dataStore)
                
Atomics.wait(new Int32Array(new SharedArrayBuffer(4)), 002000); //Sleep 450 milliseconds per walk.
                
SendPackets.UseOnItem.itemId(talismanOfEvasionthis.actualPimpItem0).send(this.kalClient.socketthis.kalClient.dataStore)
                
Atomics.wait(new Int32Array(new SharedArrayBuffer(4)), 002000); //Sleep 450 milliseconds per walk.
            
}
        }
    }
    
    
onRecvPacketReaction(packet) {
        if (!
this.isActive()) return

        if (
packet instanceof RecvPackets.ItemRemovedFromInventoryPacket)
            
this.packetItemId packet.itemId
        
if(this.packetItemId && packet instanceof RecvPackets.NewItemInInventoryPacket)
            
this.actualPimpItem this.kalClient.dataStore.getInventoryItem(this.packetItemId)
    }

HoNoRKal is offline  
Reply


Similar Threads Similar Threads
[Selling] :pimp: WarRock Account 26 Permanente Waffen :pimp:
06/12/2017 - WarRock Trading - 2 Replies
Hi Verkaufe meinen lvl 43 WarRock Account mit Nice Retails Nur via paypal vorhanden)Oder andere zahlungsmittel Anfragen/Angebote bitte via SMS/WhatsApp 0157/85513911 Preis 150€festpreis,Es ist noch Gold Premium bis ende Januar 2017 drauf.Es wurde nie Gehackt, und auch kein bugusing.Der Acc ist recht alt und wurde eigens von mir gelvlt. 26 Permanente Waffen/ lvl 43 /Eigener Clan 3 Permanente Charaktere A//M/S Sniper Ghillie_Suit Charakter Skin Perma Aw50_CHRISTMAS Perma 3th Slot
#:pimp:# CHEAP Draft Game Service #:pimp:#
02/09/2016 - League of Legends Trading - 1 Replies
Playing Cheap Draft Games for u! :) Just contact me - next days i will update here :)! Price: 0,3€/Game
:pimp::pimp::pimp:
05/06/2012 - Cabal Online - 2 Replies
guys can you teach me how to make a bypass.. then after, you can request bypass for me for free to any cabal server,,, thank you i hope you help me thanks bydway nice site ^_^
2 Nice Videos:pimp::pimp:
02/17/2011 - Call of Duty - 3 Replies
YouTube - mw2 TheNooKoo YouTube - GenesisAD TheNooKoo Blackfoot MK-3 Montage



All times are GMT +1. The time now is 21:52.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.