Skocz do zawartości
  • 👋 Witaj na MPCForum!

    Przeglądasz forum jako gość, co oznacza, że wiele świetnych funkcji jest jeszcze przed Tobą! 😎

    • Pełny dostęp do działów i ukrytych treści
    • Możliwość pisania i odpowiadania w tematach
    • System prywatnych wiadomości
    • Zbieranie reputacji i rozwijanie swojego profilu
    • Członkostwo w jednej z największych społeczności graczy

    👉 Dołączenie zajmie Ci mniej niż minutę – a zyskasz znacznie więcej!

    Zarejestruj się teraz

[MiniTut] Program w C# czytający ilość LCB10 z IBota 5.09


Gość Pan Szymek

Rekomendowane odpowiedzi

Opublikowano

Dość prosta sprawa, a uczy podstawowych rzeczy.

using System;
using System.Runtime.InteropServices;
using System.Diagnostics;

namespace IBot_Ammo_Reader
{
    class Program
    {
        static void Main(string[] args)
        {
            //szukamy procesu
            int id = -1;
            foreach (var proces in Process.GetProcesses())
                if (proces.ProcessName.ToLower().Contains("ibot") && !proces.ProcessName.ToLower().Contains("ammo"))                
                    id = proces.Id;
                
            if (id == -1) //jeżeli nie znaleźliśmy
            {
                Console.WriteLine("Nie znaleziono IBota");
                goto Wyjscie;
            }
            try
            {
                var reader = new ReadWriteMemory.ProcessMemory(id);
                reader.StartProcess();
                int adres = BitConverter.ToInt32(reader.ReadMem(0x012AED40, 4), 0); //statyczny adres
                adres += 0x190; //dodajemy offset
                int iloscAmmo = BitConverter.ToInt32(reader.ReadMem(adres, 4), 0); //czytamy ilość amunicji
                Console.WriteLine("Masz {0} LCB10!", iloscAmmo); //wypisujemy w konsoli
            }
            catch (Exception ex) { Console.WriteLine("Wystąpił błąd ({0})", ex.Message); }
        Wyjscie:
            Console.WriteLine("Wciśnij dowolny klawisz, aby wyjść");
        Console.ReadKey();
        }
    }
}
namespace ReadWriteMemory
{
    internal class ProcessMemory
    {
        // zmienne
        protected int BaseAddress;
        protected Process MyProcess;
        protected ProcessModule myProcessModule;
        private const uint PAGE_EXECUTE = 16;
        private const uint PAGE_EXECUTE_READ = 32;
        private const uint PAGE_EXECUTE_READWRITE = 64;
        private const uint PAGE_EXECUTE_WRITECOPY = 128;
        private const uint PAGE_GUARD = 256;
        private const uint PAGE_NOACCESS = 1;
        private const uint PAGE_NOCACHE = 512;
        private const uint PAGE_READONLY = 2;
        private const uint PAGE_READWRITE = 4;
        private const uint PAGE_WRITECOPY = 8;
        private const uint PROCESS_ALL_ACCESS = 2035711;
        protected int processHandle;
        protected string ProcessName;
        protected int processID;

        // funkcje
        public ProcessMemory(int processID)
        {
            this.processID = processID;
        }

        public bool CheckProcess()
        {
            return (Process.GetProcessesByName(this.ProcessName).Length > 0);
        }

        [DllImport("kernel32.dll")]
        public static extern bool CloseHandle(int hObject);
        [DllImport("kernel32.dll")]
        public static extern int OpenProcess(uint dwDesiredAccess, bool bInheritHandle, int dwProcessId);

       
        public byte[] ReadMem(int pOffset, int pSize)
        {
            byte[] buffer = new byte[pSize];
            ReadProcessMemory(this.processHandle, pOffset, buffer, pSize, 0);
            return buffer;
        }

        [DllImport("kernel32.dll")]
        public static extern bool ReadProcessMemory(int hProcess, int lpBaseAddress, byte[] buffer, int size, int lpNumberOfBytesRead);
       
        public bool StartProcess()
        {
            if (this.ProcessName != "")
            {
                this.MyProcess = Process.GetProcessById(this.processID);
                if (this.MyProcess.Id == 0)
                {
                    Console.WriteLine("Niewłaściwe ID");
                    return false;
                }
                this.processHandle = OpenProcess(2035711, false, this.MyProcess.Id);
                if (this.processHandle == 0)
                {
                    Console.WriteLine("Nie można otworzyć procesu");
                    return false;
                }
                return true;
            }
            return false;
        }      

        [Flags]
        public enum ProcessAccessFlags : uint
        {
            All = 2035711,
            CreateThread = 2,
            DupHandle = 64,
            QueryInformation = 1024,
            SetInformation = 512,
            Synchronize = 1048576,
            Terminate = 1,
            VMOperation = 8,
            VMRead = 16,
            VMWrite = 32
        }
    }
}
A tutaj zrzut ekranu pokazujący, jak to wygląda po skompilowaniu

ydgq.png

Opublikowano

To masz w pliku rescourec czy jakos tak .. masz calego ibot'a / kbota tam wyjebanego

 

 

( klik )

 

 

#Update

update.title=Upgrade
update.download=Download
update.cancel=Cancel
update.downloading=Downloading
update.available=Upgrade available
update.version=version
tray.show=Show
tray.hide=Hide
#Login Tab
login.portal.label=Portal
login.past=Past
login.server=Server
login.loginButton=Login
login.login=Login
login.passwd=Password
login.save=Save
login.reopen=Reopen
login.remove=Remove
#Servers
game.server.int2=Global America 1
game.server.int6=Global America 2
game.server.int12=Global America 3
game.server.int8=Global America 4
game.server.int15=Global America 5
game.server.gb1=Great Britain 1
game.server.gb2=Great Britain 2
game.server.de1=Germany 1
game.server.de2=Germany 2
game.server.de3=Germany 3
game.server.de4=Germany 4
game.server.de5=Germany 5
game.server.de6=Germany 6
game.server.de7=Germany 7
game.server.int1=Global Europe 1
game.server.int5=Global Europe 2
game.server.int7=Global Europe 3
game.server.int10=Global Europe 4
game.server.int11=Global Europe 5
game.server.int13=Global Europe 6
game.server.int14=Global Europe 7
game.server.es1=Spain 1
game.server.es2=Spain 2
game.server.es3=Spain 3
game.server.es4=Spain 4
game.server.it1=Italy 1
game.server.it2=Italy 2
game.server.it3=Italy 3
game.server.pl1=Poland 1
game.server.pl2=Poland 2
game.server.pl3=Poland 3
game.server.ru1=Russia 1
game.server.ru2=Russia 2
game.server.ru3=Russia 3
game.server.ru4=Russia 4
game.server.ru5=Russia 5
game.server.ru6=Russia 6
game.server.int3=Scandinavia 1
game.server.int4=Scandinavia 2
game.server.us2=USA (West)
game.server.us1=USA (East) 1
game.server.us3=USA (East) 2
game.server.us4=USA (East) 3
game.server.tr1=Turkey 1
game.server.tr2=Turkey 2
game.server.tr3=Turkey 3
game.server.tr4=Turkey 4
game.server.tr5=Turkey 5
game.server.tr6=Turkey 6
game.server.fr1=France 1
game.server.fr2=France 2
game.server.fr3=France 3
game.server.fr4=France 4
game.server.cz1=Czech Republic 1
game.server.cz2=Czech Republic 2
game.server.cz3=Czech Republic 3
game.server.br1=Brazil 1
game.server.br2=Brazil 2
game.server.hu1=Hungary 1
game.server.mx1=Mexico 1
#Hero Info
hero.configuration=Configuration
hero.repair=Repair
hero.hitpoints=Hit points
hero.nanohull=Nanohull
hero.shield=Shield
hero.cargo=Cargo bay
hero.cargo.empty=Empty
hero.cloak=Invisible
enemyWarning=Enemy warning
escape=Escape
#Hero Rich
hero.rich.credit=Credit
hero.rich.uridium=Uridium
hero.rich.jackpot=Jackpot
hero.rich.extraEnergy=Extra energy
hero.rich.experience=Experience
hero.rich.honour=Honour
hero.rich.bootyKey=Booty keys
#Error
error.title=Error
error.noHitpoints=No hit points left.
error.invalidSession=Incorrect SID.
#General Settings
settings.general.collecting.title=Collecting
settings.general.collecting.bonusBox=Bonus box
settings.general.collecting.cargoBox=Cargo box
settings.general.collecting.booty=Booty
settings.general.killAlien=Kill alien
settings.general.twistAlien=Twist aliens on maps x1, x2
settings.general.sellResources=Sell resources
settings.general.refining=Refining
settings.general.typeLaser=type laser
settings.general.sellTheDroid=Sell the droid
settings.general.repair=Repaired after destruction
settings.general.buyInvisible=Buy Invisible
settings.general.exitIn=Exit in
settings.general.mins=min
settings.general.rest1=Rest every
settings.general.rest2=mins to
settings.general.rest3=mins
#MiniMap Settings
settings.minimap.background=Background
#List
list.type=Type
list.received=Received
list.all=Total
#Kill aliens settings
settings.killAliens.set.title=Aliens
settings.killAliens.set.selectAll=Select all
settings.killAliens.set.unselectAll=Unselect all
settings.killAliens.set.name=Name
settings.killAliens.set.radius=Radius
settings.killAliens.set.random=Random +/-
#Settings
settings.tab.options=Settings
settings.tab.chat=Chat
settings.tab.players=Players
settings.tab.ammunition=Ammo
settings.amo.laser=Lasers
settings.tab.refining=Refining
settings.tab.user=User
#Chat
chat.userWhispers=whispers:
chat.language.title=Language
chat.language.bg=Bulgarian
chat.language.br=Brazilian Portuguese
chat.language.cs=Czech
chat.language.da=Danish
chat.language.de=German
chat.language.el=Greek
chat.language.en=English
chat.language.es=Spanish
chat.language.fi=Finnish
chat.language.fr=French
chat.language.hu=Hungarian
chat.language.id=Indonesian
chat.language.it=Italian
chat.language.ja=Japanese
chat.language.ko=Korean
chat.language.nl=Dutch
chat.language.no=Norwegian
chat.language.pl=Polish
chat.language.pt=Portuguese
chat.language.ro=Romanian
chat.language.ru=Russian
chat.language.sk=Slovak
chat.language.sv=Swedish
chat.language.tc=Traditional Chinese
chat.language.tr=Turkish
chat.language.us=United States
chat.language.zh=Chinese
#Log messages
settings.tab.Log=Log
log.clear=Clear
log.filter=Filter
log.filter.experience=Experience
log.filter.honor=Honor
log.filter.credits=Credits
log.filter.uridium=Uridium
log.filter.jackpot=Jackpot
log.filter.laser=Laser: %TYPE%
log.filter.rocket=Rocket: %TYPE%
log.filter.explosives=Special ammo
log.filter.cpus=CPUs
log.filter.log_files=Log-disks
log.filter.jump_vouchers=Jump credits
log.tip.experience=Experience
log.tip.honor=Honor
log.tip.credits=Credits
log.tip.uridium=Uridium
log.tip.jackpot=Jackpot
log.tip.rockets=Rockets
log.tip.laser=Lasers
log.tip.extraEnergy=Extra energy
log.msg.gather_bounty_point_s=You received one bounty point.
log.msg.gather_bounty_point_p=You received %AMOUNT% bounty points.
log.msg.gather_jackpot_s=You received one jackpot %CURRENCY%.
log.msg.gather_jackpot_p=You received %COUNT% jackpot %CURRENCY%s.
log.msg.gather_credit_s=You received one credit.
log.msg.gather_credit_p=You received %COUNT% credits.
log.msg.deduct_credit_s=One credit has been deducted.
log.msg.deduct_credit_p=%COUNT% credits have been deducted.
log.msg.gather_uridium_s=You received one Uridium.
log.msg.gather_uridium_p=You received %COUNT% Uridium.
log.msg.deduct_uridium_s=One Uridium has been deducted.
log.msg.deduct_uridium_p=%COUNT% Uridium have been deducted.
log.msg.gather_extra-energy_s_collected=You received extra energy for the galaxy-gate generator.
log.msg.gather_extra-energy_p_collected=You received extra energy for the galaxy-gate generator %COUNT% times.
log.msg.gather_experience_s=You received one experience point.
log.msg.gather_experience_p=You received %COUNT% experience points.
log.msg.gather_hitpoint_s=You received one hit point.
log.msg.gather_hitpoint_p=You received %COUNT% hit points.
log.msg.gather_rocketlauncher_s=You received one %TYPE% rocket.
log.msg.gather_rocketlauncher_p=You received %COUNT% %TYPE% rocket-launcher rockets.
log.msg.gather_laserammo_s=You received one round of %TYPE% laser ammo.
log.msg.gather_laserammo_p=You received %COUNT% rounds of %TYPE% laser ammo.
log.msg.gather_firework_s=You received one %TYPE% firework.
log.msg.gather_firework_p=You received %COUNT% %TYPE% fireworks.
log.msg.gather_rocket_s=You received one %TYPE% rocket.
log.msg.gather_rocket_p=You received %COUNT% %TYPE% rockets.
log.msg.gather_log-file_s=You received a log-disk.
log.msg.gather_log-file_p=You received %COUNT% log-disks.
log.msg.gather_jump-voucher_s=You received a jump credit for the advanced jump CPU.
log.msg.gather_jump-voucher_p=You received %COUNT% jump credits for the advanced jump CPU.
log.msg.gather_mine_s=You received one %TYPE% mine.
log.msg.gather_mine_p=You received %COUNT% %TYPE% mines.
log.msg.gather_pet-fuel_s=You received one P.E.T. fuel.
log.msg.gather_pet-fuel_p=You received %COUNT% P.E.T. fuel.
log.msg.gather_honor_s=You received one honor point.
log.msg.gather_honor_p=You received %COUNT% honor points.
log.msg.gather_speed-generator_s=You received a %TYPE% speed generator.
log.msg.gather_shield-generator_s=You received a %TYPE% shield generator.
log.msg.gather_laser_s=You received a %TYPE% laser.
log.msg.gather_cloak-cpu_s=You received a %TYPE% cloaking CPU.
log.msg.gather_jump-cpu_s=You received a %TYPE% jump CPU.
log.msg.gather_drone-repair-cpu_s=You received a %TYPE% drone repair CPU.
log.msg.gather_payment-doubler_s=You received a banking doubler.
log.msg.gather_emp_s=You received one EMP-01 burst.
log.msg.gather_emp_p=You received %COUNT% EMP-01 bursts.
log.msg.gather_speed-generator_p=You received %COUNT% %TYPE% speed generators.
log.msg.gather_skill-design_s=You received one %TYPE% skill design.
log.msg.gather_goliath-design_s=You received one %TYPE% Goliath design.
log.msg.gather_vengeance-design_s=You received one %TYPE% Vengeance design.
log.msg.farmresult=You collected:
#Space
space.jump=Jump
space.mars=Mars
space.earth=Earth
space.venus=Venus
space.every=every
space.minutes=minutes
#ToolBar
toolBar.start=Start
toolbar.pause=Pause
toolBar.stop=Logout
toolbar.run=Escape
toolbar.close=Close
toolbar.alwaysOnTop=Always on top
#Galaxy Gates
settings.galaxyGates.exitOnEnd=End
settings.galaxyGates.exitAfter=Leave after
gg.gate.title=Gate
gg.gate.1.title=\u03b1 Gate
gg.gate.2.title=\u03b2 Gate
gg.gate.3.title=\u03b3 Gate
gg.gate.1.name=\u03b1
gg.gate.2.name=\u03b2
gg.gate.3.name=\u03b3
gg.samples=Extra energy
gg.jump=Prepare jump
gg.lives=Lives
gg.parts=Parts
gg.multiplier=Multiplier
gg.button.sample=Energy
gg.button.single=Energy [%AMOUNT% URI]
gg.button.build=Build
gg.button.prepare=Prepare
gg.button.jump=Jump
gg.button.stop=Stop
gg.item.hitpoints=%COUNT% extra hit points
gg.item.rocket=%COUNT% %TYPE% rockets
gg.item.logfile=1 log-disk
gg.item.logfiles=%COUNT% log-disks
gg.item.battery=%COUNT% %TYPE% ammo
gg.item.voucher=1 repair credit
gg.item.vouchers=%COUNT% repair credits
gg.item.ore=%COUNT% %TYPE%
gg.item.part=Part %PART_ID% of the %GATE_NAME% gate
gg.item.mine=1 %TYPE% mine
gg.item.mines=%COUNT% %TYPE% mines
gg.gate.name.1=Alpha
gg.gate.name.2=Beta
gg.gate.name.3=Gamma
gg.gate.name.4=Delta
gg.gate.name.5=Epsilon
gg.gate.name.6=Zeta
gg.gate.name.7=Kappa
gg.gate.name.8=Lambda
gg.spinamount_s=ENERGY BOOST
gg.spinamount_p=ENERGY BOOSTS
#License
license.title=License
license.loading=LOADING
license.message.expire=Your license has expired.
license.message.update=The license server is being updated, please try again later.
license.message.oldVersion=This version is no longer supported, please install the update.
license.expire.pay=Pay
#AROL
arol.title=Auto Rocket CPU
#Resources
resource.ore.prometium=Prometium
resource.ore.endurium=Endurium
resource.ore.terbium=Terbium
resource.ore.prometid=Prometid
resource.ore.duranium=Duranium
resource.ore.promerium=Promerium
resource.ore.xenomit=Xenomit
resource.ore.seprom=Seprom
resource.ore.palladium=Palladium
#Languages
language.german=Deutsch
language.english=English
language.french=Fran\u00e7ais
language.spanish=Espa\u00f1ol
language.swedish=Svenska
language.russian=Русс\u043Aий
language.italian=Italiano
language.turkish=T\u03cbrk\u00e7e
language.Finnish=Suomi
language.polish=Polski
language.danish=Dansk
language.portuguese=Portugu\u00eas
language.dutch=Nederlands
language.norwegian=Norsk
language.czech=\u010ceština
language.slovak=Sloven\u010dina
language.romanian=Rom\u00e2nă
language.greek=Ε\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac
language.bulgarian=Б\u044a\u043bгарс\u043aи
language.hungarian=Magyar
#Session
session.expired=Session expired
session.update=Update
#P.E.T.
pet.title=P.E.T.
pet.passive_mode_name=Passive mode
pet.guard_mode_name=Guard mode
pet.g-destroyer_name=Destroyer
pet.g-al1_name=Auto-looter
pet.g-ar1_name=Auto-resource collector
pet.g-el1_name=Enemy locator
pet.g-rl1_name=Resource locator
pet.g-tra1_name=Cargo trader
pet.g-rep1_name=P.E.T. repairer
pet.g-kk1_name=Kamikaze detonator
pet.gear_cgm_02_name=Combo Guard Mode Gear
pet.HPT=Hit points
pet.SHD=Shield
pet.FL=Fuel
pet.EXP=Experience
#GroupSystem
groupsystem.title=Outfit
groupsystem.ignoreInvitations=Ignore invites
groupsystem.blockInvitations=Block invites
groupsystem.rejectInvitations=Reject invites
groupsystem.acceptInvitations=Accept invites
groupsystem.search=Search
groupsystem.invite=Invite
groupsystem.leave=Leave outfit
groupsystem.accept=Accept
groupsystem.revoke=Cancel
groupsystem.reject=Decline
groupsystem.invitationBehavior=Change invite settings
groupsystem.behaviorBoss=Outfit leaders only
groupsystem.behaviorFree=Open to all
groupsystem.kickMember=Kick out member
groupsystem.leaderChange=Nominate as outfit leader
#Captcha
captcha.title=Security check
captcha.init=Please enter the two words!
captcha.submit=Submit
captcha.show=Show Codes
captcha.recognize=Automatically enter
captcha.key=Secret key:
formation.title.STD=Standard Formation
formation.title.TURTLE=Turtle Formation
formation.title.ARROW=Arrow Formation
formation.title.LANCE=Lance Formation
formation.title.STAR=Star Formation
formation.title.PINCER=Pincer Formation
formation.title.DOUBLE_ARROW=Double Arrow Formation
formation.title.DIAMOND=Diamond Formation
formation.title.CHEVRON=Chevron Formation
formation.title.MOTH=Moth Formation
formation.title.CRAB=Crab Formation
formation.title.HEART=Heart Formation
formation.title.BARRAGE=Barrage Formation
formation.title.BAT=Bat Formation
formation.tooltip.STD=No bonuses or mali.
formation.tooltip.TURTLE=<html>Increases shield power by 10%,<br />but reduces laser and rocket damage by 7.5%.</html>
formation.tooltip.ARROW=<html>Increases laser damage by 20%,<br />but reduces rocket damage by 3%.</html>
formation.tooltip.LANCE=<html>Increases mine damage by 50%.</html>
formation.tooltip.STAR=<html>Increases rocket damage by 25%,<br />but also increases rocket launcher reload time by 33%.</html>
formation.tooltip.PINCER=<html>Increases laser damage by 3% against other players<br />and provides an additional 5% honor point bonus.<br />However, it reduces shield penetration by 10%.</html>
formation.tooltip.DOUBLE_ARROW=<html>Increases shield penetration by 10%,<br />but reduces shield power by 20%.</html>
formation.tooltip.DIAMOND=<html>Your shield regenerates 1% of your max shield power per second, up to a maximum of 5,000 per second.<br />But hit points are reduced by 30%.</html>
formation.tooltip.CHEVRON=<html>Increases rocket damage by 50%,<br />but ship hit points will be reduced by 20%.</html>
formation.tooltip.MOTH=<html>Increases shield penetration by 20%.<br />Increases hit points by 20%, as well.<br />But weakens your shield strength at a rate of 1% per second.</html>
formation.tooltip.CRAB=<html>Increases your shield absorption by 20%,<br />but reduces your speed by 20%, as well.</html>
formation.tooltip.HEART=<html>Increases your shield power by 10% and your hit points by 20%,<br />but reduces laser damage by 5%.</html>
formation.tooltip.BARRAGE=<html>Increases laser damage on NPCs by 5% and provides an additional 5% of EP.<br />Shield absorption, however, will be reduced by 15%.</html>

formation.tooltip.BAT=<html>Increases the damage you cause to NPCs by 8% and earns you 8% more XP, as well.<br />Decreases your speed by 15%.</html>

 

Opublikowano

To masz w pliku rescourec czy jakos tak .. masz calego ibot'a / kbota tam wyjebanego

 

 

( klik )

 

 

#Update

update.title=Upgrade

update.download=Download

update.cancel=Cancel

update.downloading=Downloading

update.available=Upgrade available

update.version=version

 

tray.show=Show

tray.hide=Hide

 

#Login Tab

login.portal.label=Portal

login.past=Past

login.server=Server

login.loginButton=Login

login.login=Login

login.passwd=Password

login.save=Save

login.reopen=Reopen

login.remove=Remove

 

#Servers

game.server.int2=Global America 1

game.server.int6=Global America 2

game.server.int12=Global America 3

game.server.int8=Global America 4

game.server.int15=Global America 5

game.server.gb1=Great Britain 1

game.server.gb2=Great Britain 2

game.server.de1=Germany 1

game.server.de2=Germany 2

game.server.de3=Germany 3

game.server.de4=Germany 4

game.server.de5=Germany 5

game.server.de6=Germany 6

game.server.de7=Germany 7

game.server.int1=Global Europe 1

game.server.int5=Global Europe 2

game.server.int7=Global Europe 3

game.server.int10=Global Europe 4

game.server.int11=Global Europe 5

game.server.int13=Global Europe 6

game.server.int14=Global Europe 7

game.server.es1=Spain 1

game.server.es2=Spain 2

game.server.es3=Spain 3

game.server.es4=Spain 4

game.server.it1=Italy 1

game.server.it2=Italy 2

game.server.it3=Italy 3

game.server.pl1=Poland 1

game.server.pl2=Poland 2

game.server.pl3=Poland 3

game.server.ru1=Russia 1

game.server.ru2=Russia 2

game.server.ru3=Russia 3

game.server.ru4=Russia 4

game.server.ru5=Russia 5

game.server.ru6=Russia 6

game.server.int3=Scandinavia 1

game.server.int4=Scandinavia 2

game.server.us2=USA (West)

game.server.us1=USA (East) 1

game.server.us3=USA (East) 2

game.server.us4=USA (East) 3

game.server.tr1=Turkey 1

game.server.tr2=Turkey 2

game.server.tr3=Turkey 3

game.server.tr4=Turkey 4

game.server.tr5=Turkey 5

game.server.tr6=Turkey 6

game.server.fr1=France 1

game.server.fr2=France 2

game.server.fr3=France 3

game.server.fr4=France 4

game.server.cz1=Czech Republic 1

game.server.cz2=Czech Republic 2

game.server.cz3=Czech Republic 3

game.server.br1=Brazil 1

game.server.br2=Brazil 2

game.server.hu1=Hungary 1

game.server.mx1=Mexico 1

 

#Hero Info

hero.configuration=Configuration

hero.repair=Repair

hero.hitpoints=Hit points

hero.nanohull=Nanohull

hero.shield=Shield

hero.cargo=Cargo bay

hero.cargo.empty=Empty

hero.cloak=Invisible

enemyWarning=Enemy warning

escape=Escape

 

#Hero Rich

hero.rich.credit=Credit

hero.rich.uridium=Uridium

hero.rich.jackpot=Jackpot

hero.rich.extraEnergy=Extra energy

hero.rich.experience=Experience

hero.rich.honour=Honour

hero.rich.bootyKey=Booty keys

 

#Error

error.title=Error

error.noHitpoints=No hit points left.

error.invalidSession=Incorrect SID.

 

#General Settings

settings.general.collecting.title=Collecting

settings.general.collecting.bonusBox=Bonus box

settings.general.collecting.cargoBox=Cargo box

settings.general.collecting.booty=Booty

settings.general.killAlien=Kill alien

settings.general.twistAlien=Twist aliens on maps x1, x2

settings.general.sellResources=Sell resources

settings.general.refining=Refining

settings.general.typeLaser=type laser

settings.general.sellTheDroid=Sell the droid

settings.general.repair=Repaired after destruction

settings.general.buyInvisible=Buy Invisible

settings.general.exitIn=Exit in

settings.general.mins=min

settings.general.rest1=Rest every

settings.general.rest2=mins to

settings.general.rest3=mins

 

#MiniMap Settings

settings.minimap.background=Background

 

#List

list.type=Type

list.received=Received

list.all=Total

 

#Kill aliens settings

settings.killAliens.set.title=Aliens

settings.killAliens.set.selectAll=Select all

settings.killAliens.set.unselectAll=Unselect all

settings.killAliens.set.name=Name

settings.killAliens.set.radius=Radius

settings.killAliens.set.random=Random +/-

 

#Settings

settings.tab.options=Settings

settings.tab.chat=Chat

settings.tab.players=Players

settings.tab.ammunition=Ammo

settings.amo.laser=Lasers

settings.tab.refining=Refining

settings.tab.user=User

 

#Chat

chat.userWhispers=whispers:

chat.language.title=Language

chat.language.bg=Bulgarian

chat.language.br=Brazilian Portuguese

chat.language.cs=Czech

chat.language.da=Danish

chat.language.de=German

chat.language.el=Greek

chat.language.en=English

chat.language.es=Spanish

chat.language.fi=Finnish

chat.language.fr=French

chat.language.hu=Hungarian

chat.language.id=Indonesian

chat.language.it=Italian

chat.language.ja=Japanese

chat.language.ko=Korean

chat.language.nl=Dutch

chat.language.no=Norwegian

chat.language.pl=Polish

chat.language.pt=Portuguese

chat.language.ro=Romanian

chat.language.ru=Russian

chat.language.sk=Slovak

chat.language.sv=Swedish

chat.language.tc=Traditional Chinese

chat.language.tr=Turkish

chat.language.us=United States

chat.language.zh=Chinese

 

#Log messages

settings.tab.Log=Log

log.clear=Clear

log.filter=Filter

log.filter.experience=Experience

log.filter.honor=Honor

log.filter.credits=Credits

log.filter.uridium=Uridium

log.filter.jackpot=Jackpot

log.filter.laser=Laser: %TYPE%

log.filter.rocket=Rocket: %TYPE%

log.filter.explosives=Special ammo

log.filter.cpus=CPUs

log.filter.log_files=Log-disks

log.filter.jump_vouchers=Jump credits

 

log.tip.experience=Experience

log.tip.honor=Honor

log.tip.credits=Credits

log.tip.uridium=Uridium

log.tip.jackpot=Jackpot

log.tip.rockets=Rockets

log.tip.laser=Lasers

log.tip.extraEnergy=Extra energy

 

log.msg.gather_bounty_point_s=You received one bounty point.

log.msg.gather_bounty_point_p=You received %AMOUNT% bounty points.

log.msg.gather_jackpot_s=You received one jackpot %CURRENCY%.

log.msg.gather_jackpot_p=You received %COUNT% jackpot %CURRENCY%s.

log.msg.gather_credit_s=You received one credit.

log.msg.gather_credit_p=You received %COUNT% credits.

log.msg.deduct_credit_s=One credit has been deducted.

log.msg.deduct_credit_p=%COUNT% credits have been deducted.

log.msg.gather_uridium_s=You received one Uridium.

log.msg.gather_uridium_p=You received %COUNT% Uridium.

log.msg.deduct_uridium_s=One Uridium has been deducted.

log.msg.deduct_uridium_p=%COUNT% Uridium have been deducted.

log.msg.gather_extra-energy_s_collected=You received extra energy for the galaxy-gate generator.

log.msg.gather_extra-energy_p_collected=You received extra energy for the galaxy-gate generator %COUNT% times.

log.msg.gather_experience_s=You received one experience point.

log.msg.gather_experience_p=You received %COUNT% experience points.

log.msg.gather_hitpoint_s=You received one hit point.

log.msg.gather_hitpoint_p=You received %COUNT% hit points.

log.msg.gather_rocketlauncher_s=You received one %TYPE% rocket.

log.msg.gather_rocketlauncher_p=You received %COUNT% %TYPE% rocket-launcher rockets.

log.msg.gather_laserammo_s=You received one round of %TYPE% laser ammo.

log.msg.gather_laserammo_p=You received %COUNT% rounds of %TYPE% laser ammo.

log.msg.gather_firework_s=You received one %TYPE% firework.

log.msg.gather_firework_p=You received %COUNT% %TYPE% fireworks.

log.msg.gather_rocket_s=You received one %TYPE% rocket.

log.msg.gather_rocket_p=You received %COUNT% %TYPE% rockets.

log.msg.gather_log-file_s=You received a log-disk.

log.msg.gather_log-file_p=You received %COUNT% log-disks.

log.msg.gather_jump-voucher_s=You received a jump credit for the advanced jump CPU.

log.msg.gather_jump-voucher_p=You received %COUNT% jump credits for the advanced jump CPU.

log.msg.gather_mine_s=You received one %TYPE% mine.

log.msg.gather_mine_p=You received %COUNT% %TYPE% mines.

log.msg.gather_pet-fuel_s=You received one P.E.T. fuel.

log.msg.gather_pet-fuel_p=You received %COUNT% P.E.T. fuel.

log.msg.gather_honor_s=You received one honor point.

log.msg.gather_honor_p=You received %COUNT% honor points.

log.msg.gather_speed-generator_s=You received a %TYPE% speed generator.

log.msg.gather_shield-generator_s=You received a %TYPE% shield generator.

log.msg.gather_laser_s=You received a %TYPE% laser.

log.msg.gather_cloak-cpu_s=You received a %TYPE% cloaking CPU.

log.msg.gather_jump-cpu_s=You received a %TYPE% jump CPU.

log.msg.gather_drone-repair-cpu_s=You received a %TYPE% drone repair CPU.

log.msg.gather_payment-doubler_s=You received a banking doubler.

log.msg.gather_emp_s=You received one EMP-01 burst.

log.msg.gather_emp_p=You received %COUNT% EMP-01 bursts.

log.msg.gather_speed-generator_p=You received %COUNT% %TYPE% speed generators.

log.msg.gather_skill-design_s=You received one %TYPE% skill design.

log.msg.gather_goliath-design_s=You received one %TYPE% Goliath design.

log.msg.gather_vengeance-design_s=You received one %TYPE% Vengeance design.

log.msg.farmresult=You collected:

 

#Space

space.jump=Jump

space.mars=Mars

space.earth=Earth

space.venus=Venus

space.every=every

space.minutes=minutes

 

#ToolBar

toolBar.start=Start

toolbar.pause=Pause

toolBar.stop=Logout

toolbar.run=Escape

toolbar.close=Close

toolbar.alwaysOnTop=Always on top

 

#Galaxy Gates

settings.galaxyGates.exitOnEnd=End

settings.galaxyGates.exitAfter=Leave after

gg.gate.title=Gate

gg.gate.1.title=\u03b1 Gate

gg.gate.2.title=\u03b2 Gate

gg.gate.3.title=\u03b3 Gate

gg.gate.1.name=\u03b1

gg.gate.2.name=\u03b2

gg.gate.3.name=\u03b3

gg.samples=Extra energy

gg.jump=Prepare jump

gg.lives=Lives

gg.parts=Parts

gg.multiplier=Multiplier

gg.button.sample=Energy

gg.button.single=Energy [%AMOUNT% URI]

gg.button.build=Build

gg.button.prepare=Prepare

gg.button.jump=Jump

gg.button.stop=Stop

gg.item.hitpoints=%COUNT% extra hit points

gg.item.rocket=%COUNT% %TYPE% rockets

gg.item.logfile=1 log-disk

gg.item.logfiles=%COUNT% log-disks

gg.item.battery=%COUNT% %TYPE% ammo

gg.item.voucher=1 repair credit

gg.item.vouchers=%COUNT% repair credits

gg.item.ore=%COUNT% %TYPE%

gg.item.part=Part %PART_ID% of the %GATE_NAME% gate

gg.item.mine=1 %TYPE% mine

gg.item.mines=%COUNT% %TYPE% mines

gg.gate.name.1=Alpha

gg.gate.name.2=Beta

gg.gate.name.3=Gamma

gg.gate.name.4=Delta

gg.gate.name.5=Epsilon

gg.gate.name.6=Zeta

gg.gate.name.7=Kappa

gg.gate.name.8=Lambda

gg.spinamount_s=ENERGY BOOST

gg.spinamount_p=ENERGY BOOSTS

 

#License

license.title=License

license.loading=LOADING

license.message.expire=Your license has expired.

license.message.update=The license server is being updated, please try again later.

license.message.oldVersion=This version is no longer supported, please install the update.

license.expire.pay=Pay

 

#AROL

arol.title=Auto Rocket CPU

 

#Resources

resource.ore.prometium=Prometium

resource.ore.endurium=Endurium

resource.ore.terbium=Terbium

resource.ore.prometid=Prometid

resource.ore.duranium=Duranium

resource.ore.promerium=Promerium

resource.ore.xenomit=Xenomit

resource.ore.seprom=Seprom

resource.ore.palladium=Palladium

 

#Languages

language.german=Deutsch

language.english=English

language.french=Fran\u00e7ais

language.spanish=Espa\u00f1ol

language.swedish=Svenska

language.russian=Русс\u043Aий

language.italian=Italiano

language.turkish=T\u03cbrk\u00e7e

language.Finnish=Suomi

language.polish=Polski

language.danish=Dansk

language.portuguese=Portugu\u00eas

language.dutch=Nederlands

language.norwegian=Norsk

language.czech=\u010ceština

language.slovak=Sloven\u010dina

language.romanian=Rom\u00e2nă

language.greek=Ε\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac

language.bulgarian=Б\u044a\u043bгарс\u043aи

language.hungarian=Magyar

 

 

#Session

session.expired=Session expired

session.update=Update

 

#P.E.T.

pet.title=P.E.T.

pet.passive_mode_name=Passive mode

pet.guard_mode_name=Guard mode

pet.g-destroyer_name=Destroyer

pet.g-al1_name=Auto-looter

pet.g-ar1_name=Auto-resource collector

pet.g-el1_name=Enemy locator

pet.g-rl1_name=Resource locator

pet.g-tra1_name=Cargo trader

pet.g-rep1_name=P.E.T. repairer

pet.g-kk1_name=Kamikaze detonator

pet.gear_cgm_02_name=Combo Guard Mode Gear

pet.HPT=Hit points

pet.SHD=Shield

pet.FL=Fuel

pet.EXP=Experience

 

#GroupSystem

groupsystem.title=Outfit

groupsystem.ignoreInvitations=Ignore invites

groupsystem.blockInvitations=Block invites

groupsystem.rejectInvitations=Reject invites

groupsystem.acceptInvitations=Accept invites

groupsystem.search=Search

groupsystem.invite=Invite

groupsystem.leave=Leave outfit

groupsystem.accept=Accept

groupsystem.revoke=Cancel

groupsystem.reject=Decline

groupsystem.invitationBehavior=Change invite settings

groupsystem.behaviorBoss=Outfit leaders only

groupsystem.behaviorFree=Open to all

groupsystem.kickMember=Kick out member

groupsystem.leaderChange=Nominate as outfit leader

 

#Captcha

captcha.title=Security check

captcha.init=Please enter the two words!

captcha.submit=Submit

captcha.show=Show Codes

captcha.recognize=Automatically enter

captcha.key=Secret key:

 

formation.title.STD=Standard Formation

formation.title.TURTLE=Turtle Formation

formation.title.ARROW=Arrow Formation

formation.title.LANCE=Lance Formation

formation.title.STAR=Star Formation

formation.title.PINCER=Pincer Formation

formation.title.DOUBLE_ARROW=Double Arrow Formation

formation.title.DIAMOND=Diamond Formation

formation.title.CHEVRON=Chevron Formation

formation.title.MOTH=Moth Formation

formation.title.CRAB=Crab Formation

formation.title.HEART=Heart Formation

formation.title.BARRAGE=Barrage Formation

formation.title.BAT=Bat Formation

formation.tooltip.STD=No bonuses or mali.

formation.tooltip.TURTLE=<html>Increases shield power by 10%,<br />but reduces laser and rocket damage by 7.5%.</html>

formation.tooltip.ARROW=<html>Increases laser damage by 20%,<br />but reduces rocket damage by 3%.</html>

formation.tooltip.LANCE=<html>Increases mine damage by 50%.</html>

formation.tooltip.STAR=<html>Increases rocket damage by 25%,<br />but also increases rocket launcher reload time by 33%.</html>

formation.tooltip.PINCER=<html>Increases laser damage by 3% against other players<br />and provides an additional 5% honor point bonus.<br />However, it reduces shield penetration by 10%.</html>

formation.tooltip.DOUBLE_ARROW=<html>Increases shield penetration by 10%,<br />but reduces shield power by 20%.</html>

formation.tooltip.DIAMOND=<html>Your shield regenerates 1% of your max shield power per second, up to a maximum of 5,000 per second.<br />But hit points are reduced by 30%.</html>

formation.tooltip.CHEVRON=<html>Increases rocket damage by 50%,<br />but ship hit points will be reduced by 20%.</html>

formation.tooltip.MOTH=<html>Increases shield penetration by 20%.<br />Increases hit points by 20%, as well.<br />But weakens your shield strength at a rate of 1% per second.</html>

formation.tooltip.CRAB=<html>Increases your shield absorption by 20%,<br />but reduces your speed by 20%, as well.</html>

formation.tooltip.HEART=<html>Increases your shield power by 10% and your hit points by 20%,<br />but reduces laser damage by 5%.</html>

formation.tooltip.BARRAGE=<html>Increases laser damage on NPCs by 5% and provides an additional 5% of EP.<br />Shield absorption, however, will be reduced by 15%.</html>

formation.tooltip.BAT=<html>Increases the damage you cause to NPCs by 8% and earns you 8% more XP, as well.<br />Decreases your speed by 15%.</html>

 

Ten program wyciąga ilość amunicji z pamięci, a nie tekst.
Opublikowano

Ten program wyciąga ilość amunicji z pamięci, a nie tekst.

 

Serio ? .. , a ja myslalem ze to jest lf4 script i dmg hack w jednym -.-

 

 

Komus moze sie przyda

Opublikowano

Sorry, mam pytanie co to jest ?? w Ibocie w zakładce amunicja czy jakoś tak pisze ile masz LCB więc za bardzo nie rozumiem tego .... wytłumaczy ktoś?

Opublikowano

Sorry, mam pytanie co to jest ?? w Ibocie w zakładce amunicja czy jakoś tak pisze ile masz LCB więc za bardzo nie rozumiem tego .... wytłumaczy ktoś?

To miało na celu jedynie pokazanie w jaki sposób czytać pamięć.
Opublikowano

Program wyświetla ci twój aktualny stan LCB_10, pobierając go z procesu IBota.

Uczy obsługi C#, i wydobywania danych z pamięci, a ja mam pytanie jak jest z paroma zakładkami w ibocie i kontami :p?

Opublikowano

Program wyświetla ci twój aktualny stan LCB_10, pobierając go z procesu IBota.

Uczy obsługi C#, i wydobywania danych z pamięci, a ja mam pytanie jak jest z paroma zakładkami w ibocie i kontami :P?

Prawdopodobnie zadziała to tak, że pobierze tylko z pierwszego włączonego konta.
  • 3 tygodnie później...
  • 2 tygodnie później...
Opublikowano

Mógłbyś dodać więcej komentarzy? Albo pod spodem objaśnić fragmenty kodu ;p?

Większość to odwoływanie się do funkcji z kernel32.dll, także nie widziałem powodów do dodawania większej ilości komentarzy.

Zarchiwizowany

Ten temat przebywa obecnie w archiwum. Dodawanie nowych odpowiedzi zostało zablokowane.

×
×
  • Dodaj nową pozycję...