Post: [Source][ SimdiBo2.dll ] Useful Library For Making Bo2 Tools !
06-28-2015, 11:35 PM #1
Default Avatar
Remy
Guest
(adsbygoogle = window.adsbygoogle || []).push({}); Hello :whistle:
So Earlier I Remembered A Useful Dll For Mw3 Called You must login or register to view this content. And Had Some Time And Figured Why Not Recreate It But For Black Ops 2. Using This Could Speed Up The Time It Takes You To Create A Tool For Bo2, Hopefully You Find This Useful.

Old Thread
It Is Not 100% Complete - Updating Very Frequently

> To Use, First Add The Reference(s)
    using PS3lib;
using SimdiBo2;


> Next Initialize The DLL With A Button/etc. | Make Sure You Are In A Game. (This Primarily Enables RPC)
    Main.Initialize();


> Now Calling Methods Becomes This Simple
    
Stats.SetLocalName(textBox3.Text);

Stats.SetClantag(textBox1.Text);

Stats.SetPrestige(numericUpDown1.Value);

Mods.AntiFreeze(true);

Mods.RedBoxes(true);

Lobby.Timescale(Lobby.TimescaleEnum.Slow);

Clients.Godmode(1, true);

Clients.KickClient(3);

etc.


Current Features (Incomplete)

Mods
AntiBan
AntiFreeze
BigNames
Laser
Orbital VSAT
RedBoxes
SteadyAim
Target Finder
UAV


Stats
Change Class Names
Change Local Name/Name/Clan Tag
Change Medals (10000 Nuclears, etc)
Deaths
Headshots
Kills
Level
Losses
Prestige
Score
Tokens
Unlock All
Wins


Clients
Blurred Vision
Change Vision
Clone
Fake Lag
Freeze PS3
Godmode
Kick
Kill
Orbital VSAT
Teleport To Center/Sky
Unlimited Ammo
iPrintln/iPrintlnbold


Lobby
Gravity
Jump
Speed
Timescale



Examples

Mods
    
//Turns UAV On
Mods.UAV(true);

//Turns Super Steady Aim Off
Mods.SteadyAim(false);


Stats
    
//Unlocks Everything
Stats.UnlockAll();

//Sets Amount Of Selected Medal || Or Use MedalList.Meadls.ALLMEDALS To Set All Medals
Stats.SetMedalAmount(MedalList.Medals.FuryKill, numericUpDown2.Value);

//Changes Prestige
Stats.SetPrestige(numericUpDown2.Value);

//Changes Class Names **IMPORTANT**
//Must - 1 From Numeric Up Down Value***
Stats.SetClass(numericUpDown2.Value - 1, textBox1.Text);


Clients
    
//Turns Godmode On For Client 0
Clients.Godmode(0, true);

//Clones Client 7
Clients.CloneClient(7);

//Prints Message To Client 3
Clients.iPrintln(3, textBox1.Text);


Lobby
    
//Changes Lobby Speed To Fast
Lobby.Speed(Lobby.SpeedEnum.Fast);

//Changes Timescale To Slow
Lobby.Timescale(Lobby.TimescaleEnum.Slow);



Download Removed - Scroll Down

> Credits
Jannik007 - Idea
Jewels - Offsets
Choco - RPC
iMCSx - PS3Lib

> So People Have Been Having Errors With The DLL & There Are No Secrets Within This Library It Is Just Basically The Essentials To A RTM Tool Put Into A DLL For Ease Of Access. So To Make It Easier For People Who Are Having Error I Am Gonna Put A Download To The Source Below.
(I Went A Little Crazy With Classses, Only To Make Sure It Was Extra Clean And Organized Winky Winky)

Source Code Download Below

You must login or register to view this content.
Last edited by Remy ; 09-21-2015 at 01:29 AM.

The following 13 users say thank you to Remy for this useful post:

<Brad>, BISOON, BunnyV3, Chen Madhala, Exelo, gοd, HiddenHour, Im_YouViolateMe, IrishDowngrades, Oakland, Otaku Modder, ProfoundModz, V--JR7
09-15-2015, 04:38 PM #20
Ethen
Banned
can you pm me a download link
09-15-2015, 11:22 PM #21
Default Avatar
Remy
Guest
Originally posted by DEX View Post
can you pm me a download link


There is a download link in thread? But here you go

You must login or register to view this content.
09-17-2015, 07:54 AM #22
Humble
Little One
Originally posted by Infraction View Post
Hello :whistle:
So Earlier I Remembered A Useful Dll For Mw3 Called You must login or register to view this content. And Had Some Time And Figured Why Not Recreate It But For Black Ops 2. Using This Could Speed Up The Time It Takes You To Create A Tool For Bo2, Hopefully You Find This Useful.

It Is Not 100% Complete - Updating Very Frequently

> To Use, First Add The Reference(s)
    using PS3lib;
using SimdiBo2;


> Next Initialize The DLL With A Button/etc. | Make Sure You Are In A Game. (This Primarily Enables RPC)
    Main.Initialize();


> Now Calling Methods Becomes This Simple
    
Stats.SetLocalName(textBox3.Text);

Stats.SetClantag(textBox1.Text);

Stats.SetPrestige(numericUpDown1.Value);

Mods.AntiFreeze(true);

Mods.RedBoxes(true);

Lobby.Timescale(Lobby.TimescaleEnum.Slow);

Clients.Godmode(1, true);

Clients.KickClient(3);

etc.


Current Features (Incomplete)

Mods
AntiBan
AntiFreeze
BigNames
Laser
Orbital VSAT
RedBoxes
SteadyAim
Target Finder
UAV


Stats
Change Class Names
Change Local Name/Name/Clan Tag
Change Medals (10000 Nuclears, etc)
Deaths
Headshots
Kills
Level
Losses
Prestige
Score
Tokens
Unlock All
Wins


Clients
Blurred Vision
Change Vision
Clone
Fake Lag
Freeze PS3
Godmode
Kick
Kill
Orbital VSAT
Teleport To Center/Sky
Unlimited Ammo
iPrintln/iPrintlnbold


Lobby
Gravity
Jump
Speed
Timescale



Examples

Mods
    
//Turns UAV On
Mods.UAV(true);

//Turns Super Steady Aim Off
Mods.SteadyAim(false);


Stats
    
//Unlocks Everything
Stats.UnlockAll();

//Sets Amount Of Selected Medal || Or Use MedalList.Meadls.ALLMEDALS To Set All Medals
Stats.SetMedalAmount(MedalList.Medals.FuryKill, numericUpDown2.Value);

//Changes Prestige
Stats.SetPrestige(numericUpDown2.Value);

//Changes Class Names **IMPORTANT**
//Must - 1 From Numeric Up Down Value***
Stats.SetClass(numericUpDown2.Value - 1, textBox1.Text);


Clients
    
//Turns Godmode On For Client 0
Clients.Godmode(0, true);

//Clones Client 7
Clients.CloneClient(7);

//Prints Message To Client 3
Clients.iPrintln(3, textBox1.Text);


Lobby
    
//Changes Lobby Speed To Fast
Lobby.Speed(Lobby.SpeedEnum.Fast);

//Changes Timescale To Slow
Lobby.Timescale(Lobby.TimescaleEnum.Slow);



Download Removed - Scroll Down

> Credits
Jannik007 - Idea
Jewels - Offsets
Choco - RPC
iMCSx - PS3Lib

> So People Have Been Having Errors With The DLL & There Are No Secrets Within This Library It Is Just Basically The Essentials To A RTM Tool Put Into A DLL For Ease Of Access. So To Make It Easier For People Who Are Having Error I Am Gonna Put A Download To The Source Below.
(I Went A Little Crazy With Classses, Only To Make Sure It Was Extra Clean And Organized Winky Winky)

Source Code Download Below

You must login or register to view this content.


Great release this is going to help a load of people Happy

The following user thanked Humble for this useful post:

09-20-2015, 02:45 PM #23
Useless, doesn't work anymore.
09-21-2015, 01:28 AM #24
Default Avatar
Remy
Guest
Originally posted by FatalityMods View Post
Useless, doesn't work anymore.


Wtf
I don't think you quite understand what this is and how to use it.
Last edited by Remy ; 09-21-2015 at 01:40 AM.
09-28-2015, 10:07 AM #25
IrishDowngrades
Do a barrel roll!
thanks ill use this in my new tool for bo2 Happy <3

The following user thanked IrishDowngrades for this useful post:

09-28-2015, 09:42 PM #26
Default Avatar
Remy
Guest
Originally posted by IrishDowngrades View Post
thanks ill use this in my new tool for bo2 Happy <3


Glad you will find this useful :yes:
09-29-2015, 08:11 PM #27
I'm sorry, works fine Kryptus

The following user thanked FatalityMods for this useful post:

01-09-2016, 05:18 AM #28
SO 2 you for releasing source bruh 👌👌👌

Copyright © 2025, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo