OutdatedOversoul Loader

Posts 112 of 12 · Page 1 of 1
Oversoul Loader
Code:
Security.allowDomain("*");
import flash.net.URLRequest;
import flash.display.Loader;
import flash.events.Event;
import flash.events.ProgressEvent;

function startLoad()
{
var mLoader:Loader = new Loader();
var mRequest:URLRequest = (new URLRequest("http://oversoulcdn.artix.com/game/OSGame0_6_18.swf"));
mLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onCompleteHandler);
mLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgressHandler);
mLoader.load(mRequest);
}

function onCompleteHandler(loadEvent:Event)
{
        addChild(loadEvent.currentTarget.content);
}
function onProgressHandler(mProgress:ProgressEvent)
{
var percent:Number = mProgress.bytesLoaded/mProgress.bytesTotal;
trace(percent);
}
startLoad();
Simple SWF loader, now to associate this with 'Game', so we can actually put some hacks on it.


Source codes by @JamesRo
Sends a packet.
Code:
Game.SessionInstance.send(Object);
Heals the player.
Code:
Game.SessionInstance.me.player.healStat(String, int);
Grants access to the player's skill deck.
Code:
Game.SessionInstance.me.player.skillDeck[0-4];
Switches the game state(map, battle, etc.)
Code:
switchState(String, Object);
Some player properties.
Code:
Game.SessionInstance.me.player.intLight;
Game.SessionInstance.me.player.intNeutral;
Game.SessionInstance.me.player.intMaxElement;
Game.SessionInstance.me.player.intGold;
Game.SessionInstance.me.player.intHPMax;
Great now i just need oversoul on a swf file :P
Quote Originally Posted by Gynder View Post
Great now i just need oversoul on a swf file :P
You don't need a separate swf file to use this. Just copy & paste this code onto your AS3 actions panel and you're good to go.
Hey zerobrium I sent you a PM on youtube. (101TheGamer101) Would have emailed you but I haven't posted anything on these forums yet so it won't let me.
What is we dont have AS3? i just want to make oversoul easier

It's dosnt Work
Can anyone please make an Oversoul trainer?
/sticked , this is very helpful
Quote Originally Posted by Gio View Post
/sticked , this is very helpful
Not really... it's an old OS loader so it doesn't work now.
Quote Originally Posted by Rance-Sama View Post
Not really... it's an old OS loader so it doesn't work now.
Well , didn't test it. Thanks to telling me

/closed


EDIT:
@ @Ellee Just told me that source still works , you just have to change build url.
thanks, great job
Posts 112 of 12 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?