|
You last visited: Today at 22:30
Advertisement
Requesting Ninja Saga Main Functions
Discussion on Requesting Ninja Saga Main Functions within the Facebook forum part of the Browsergames category.
10/07/2010, 07:24
|
#1
|
elite*gold: 0
Join Date: Sep 2010
Posts: 1
Received Thanks: 0
|
Requesting Ninja Saga Main Functions
Hi there..
Does anyone know how I can get the swf or the source code for the main for ninja saga?
By main i mean: Central.main.getMainChar().getData
I want to know where the getMainChar() Function and the hierarchy functions are.
Thanks.
|
|
|
10/07/2010, 10:23
|
#2
|
elite*gold: 0
Join Date: Jul 2009
Posts: 131
Received Thanks: 32
|
you might use Google 
it will help you.
|
|
|
11/11/2010, 12:37
|
#3
|
elite*gold: 0
Join Date: Sep 2010
Posts: 67
Received Thanks: 14
|
google bro
|
|
|
11/19/2010, 05:18
|
#4
|
elite*gold: 0
Join Date: Jun 2009
Posts: 18
Received Thanks: 0
|
SEARCH IN THE GO0GLE BRO IT WILL HELP YOU
|
|
|
11/19/2010, 08:08
|
#5
|
elite*gold: 0
Join Date: Nov 2010
Posts: 91
Received Thanks: 14
|
google, yahoo...
lot more...
|
|
|
11/19/2010, 08:12
|
#6
|
elite*gold: 0
Join Date: Dec 2009
Posts: 52
Received Thanks: 57
|
Google is your BEST FRIEND.
|
|
|
11/19/2010, 09:02
|
#7
|
elite*gold: 0
Join Date: Jul 2009
Posts: 1,097
Received Thanks: 388
|
Lol 5 people's repeat the same,i think this is spam FTW
|
|
|
11/19/2010, 09:19
|
#8
|
elite*gold: 0
Join Date: Mar 2010
Posts: 117
Received Thanks: 176
|
Code:
The Old Scripts :
// class Mission_2
package
{
import flash.display.*;
import ninjasaga.*;
import ninjasaga.base.*;
import ninjasaga.data.*;
public class Mission_2 extends ninjasaga.base.MissionBase
{
public function Mission_2()
{
super();
return;
}
public function getData(arg1:uint, arg2:String=""):Array
{
ninjasaga.Central.battle.setBattleBg(flash.display.MovieClip(new BattleBG()));
if (arg2 == ninjasaga.data.GameEvents.BATTLE_LOSE || arg2 == ninjasaga.data.GameEvents.BATTLE_RUN)
{
return _failData;
}
if (arg1 == 0)
{
this._rewards.weapon = ["set262"];
return this.ryu_dialog_01;
}
if (arg1 == 1 && arg2 == ninjasaga.data.GameEvents.BATTLE_FINISH)
{
ninjasaga.Central.battle.resetBattle();
return ryu_dialog_02;
}
if (arg1 == 2 && arg2 == ninjasaga.data.GameEvents.MAP_ENTER)
{
ninjasaga.Central.battle.setBattleBg(null);
return ryu_dialog_03;
}
return null;
}
protected override function initData():void
{
ryu_dialog_01 = [{"type":ninjasaga.data.MissionData.EVT_TEXT, "text":""}, {"type":ninjasaga.data.MissionData.EVT_TEXT, "text":""}, {"type":ninjasaga.data.MissionData.EVT_BATTLE, "enemies":[ninjasaga.data.EnemyData.getInstance().getByClass("Ene_01")]}];
ryu_dialog_02 = [{"type":ninjasaga.data.MissionData.EVT_TEXT, "text":""}, {"type":ninjasaga.data.MissionData.EVT_END, "fn":ninjasaga.Central.battle.startATB}];
ryu_dialog_03 = [{"type":ninjasaga.data.MissionData.EVT_TEXT, "text":""}, {"type":ninjasaga.data.MissionData.EVT_FINISH}];
var loc1:*=ninjasaga.data.AppData.lang;
var loc2:*=loc1;
switch (loc2)
{
case ninjasaga.data.AppData.ZH:
{
ryu_dialog_01[0].text = "你就是[playername]吧。我是龍,我大半輩子都在鑽研體術,村裡的忍者大部份都是我的學生!現在,讓我看看你的能耐!";
ryu_dialog_01[1].text = "當你有夢想,你就要努力去追趕!來吧,先打倒你面前那兩個稻草人!";
ryu_dialog_02[0].text = "唔...... 還不錯!再來一次看看!";
ryu_dialog_03[0].text = "雖然技巧還不夠成熟,不過你很有潛力嘛!有空再來找我練習吧!";
break;
}
default:
{
ryu_dialog_01[0].text = "hi, Im ekopns blu learning,just play the mission and you get the weapon!";
ryu_dialog_01[1].text = "hidup indonesia.";
ryu_dialog_02[0].text = "ayo berjuang!";
ryu_dialog_03[0].text = "coba edit swf lainnya dapatkan emblem ato token, kamu pasti bisa....!";
}
}
return;
}
public const type:String="normal";
public const id:String="msn2";
internal var ryu_dialog_01:Array;
internal var ryu_dialog_02:Array;
internal var ryu_dialog_03:Array;
}
}
// class closeup
package
{
import flash.display.*;
public dynamic class closeup extends flash.display.MovieClip
{
public function closeup()
{
super();
return;
}
}
}
The New Scripts :
// class Mission_2
package
{
import flash.display.*;
import ninjasaga.*;
import ninjasaga.base.*;
import ninjasaga.data.*;
public class Mission_2 extends ninjasaga.base.MissionBase
{
public function Mission_2()
{
super();
return;
}
public function getData(arg1:uint, arg2:String=""):Array
{
ninjasaga.Central.battle.setBattleBg(flash.display.MovieClip(new BattleBG()));
if (arg2 == ninjasaga.data.GameEvents.BATTLE_LOSE || arg2 == ninjasaga.data.GameEvents.BATTLE_RUN)
{
return _failData;
}
if (arg1 == 0)
{
if (ninjasaga.Central.main.getMainChar().hasSkill("skill41"))
{
if (!ninjasaga.Central.main.getMainChar().hasSkill("skill42") && ninjasaga.Central.main.getMainChar().getLevel() >= 2)
{
this._rewards.skills = ["skill42"];
}
else
{
this._rewards.skills = null;
}
}
else
{
this._rewards.skills = ["skill41"];
}
return this.ryu_dialog_01;
}
if (arg1 == 1 && arg2 == ninjasaga.data.GameEvents.BATTLE_FINISH)
{
ninjasaga.Central.battle.resetBattle();
return ryu_dialog_02;
}
if (arg1 == 2 && arg2 == ninjasaga.data.GameEvents.MAP_ENTER)
{
ninjasaga.Central.battle.setBattleBg(null);
return ryu_dialog_03;
}
return null;
}
protected override function initData():void
{
ryu_dialog_01 = [{"type":ninjasaga.data.MissionData.EVT_TEXT, "text":""}, {"type":ninjasaga.data.MissionData.EVT_TEXT, "text":""}, {"type":ninjasaga.data.MissionData.EVT_BATTLE, "enemies":[ninjasaga.data.EnemyData.getInstance().getByClass("Ene_01")]}];
ryu_dialog_02 = [{"type":ninjasaga.data.MissionData.EVT_TEXT, "text":""}, {"type":ninjasaga.data.MissionData.EVT_END, "fn":ninjasaga.Central.battle.startATB}];
ryu_dialog_03 = [{"type":ninjasaga.data.MissionData.EVT_TEXT, "text":""}, {"type":ninjasaga.data.MissionData.EVT_FINISH}];
var loc1:*=ninjasaga.data.AppData.lang;
switch (loc1)
{
case ninjasaga.data.AppData.ZH:
{
ryu_dialog_01[0].text = "你就是 [playername] 吧?!我是龍,畢生都在鑽研體術。村裡的忍者全是我的學生!";
ryu_dialog_01[1].text = "小子,先從攻擊稻草人開始練習,使出你的全力吧!";
ryu_dialog_02[0].text = "還不賴嘛,臭小子!再試一次!";
ryu_dialog_03[0].text = "小子,雖然你的技巧不夠成熟,不過還挺有潛力的!有空再來找我練習吧!";
break;
}
case ninjasaga.data.AppData.ES:
{
ryu_dialog_01[0].text = "Asi que tu eres [playername]. Mi nombre es Ryu y soy un Maestro de Taijutsu, he dedicado mi vida a ensenar estas tecnicas. Vamos, muestrame que sabes hacer!!";
ryu_dialog_01[1].text = "Si quieres alcanzar tu objetivo, debes trabajar duro para lograrlo. Muéstrame tus habilidades de ataque en los dos maniquíes.";
ryu_dialog_02[0].text = "No esta mal. Pero no es suficiente! Intentalo de nuevo";
ryu_dialog_03[0].text = "Bien hecho! Aunque tus habilidades en combate aun son escasas has probado que tienes potencial!";
break;
}
default:
{
ryu_dialog_01[0].text = "So, You're [playername], I'm Ryu. I've been spending my life teaching Taijutsu. I am an expert. Now, show me your skills!";
ryu_dialog_01[1].text = "If you want to achieve something, you should work hard for it. Show me your attack skills on the two dummies.";
ryu_dialog_02[0].text = "Not bad, but that's not enough, try harder!";
ryu_dialog_03[0].text = "Good job! Although your combat skills are still young but you proved your effort.";
}
}
return;
}
public const type:String="normal";
public const id:String="msn2";
internal var ryu_dialog_01:Array;
internal var ryu_dialog_02:Array;
internal var ryu_dialog_03:Array;
}
}
// class closeup
package
{
import flash.display.*;
public dynamic class closeup extends flash.display.MovieClip
{
public function closeup()
{
super();
return;
}
}
}
Eh, just redo.
EDIT:
Fuck those 1st 5 who replied.
|
|
|
11/19/2010, 11:11
|
#9
|
elite*gold: 0
Join Date: Nov 2010
Posts: 14
Received Thanks: 1
|
whats this code for?,,could this help for making hacks?
|
|
|
11/19/2010, 13:47
|
#10
|
elite*gold: 0
Join Date: Mar 2010
Posts: 117
Received Thanks: 176
|
Quote:
Originally Posted by yhumz
whats this code for?,,could this help for making hacks?
|
functions.
|
|
|
11/19/2010, 14:59
|
#11
|
elite*gold: 0
Join Date: Sep 2010
Posts: 101
Received Thanks: 237
|
every path from ninjasaga has different source code.
is too many to share here.
|
|
|
 |
Similar Threads
|
ninja saga:password for Ninja Saga Ultimate Hax
07/27/2012 - Facebook - 31 Replies
i download the nhw verson but no pass and when i enterd the download link for the pass its says worng url. someone can give me the password plz??
|
NINJA SAGA NEW 1St Anniversary Help "Ninja Eyes" 100% Working No Banned
08/27/2011 - Facebook - 12 Replies
http://i31.tinypic.com/m7gh1g.jpg
Credits: kevinsenjaya@pwnthis
For those having trouble completing today's Carnival Badge mission, Kevin has gladly shared his solutions on pwnthis. Just download the .zip folder above and you will have all 9 solutions to the 9 different puzzles.
For people who cannot download thru sharecash and megaupload and complaining that you cannot download thru upload.tc, you have to open your eyes bigger. Wait for the timer to countdown then click on "click...
|
[Requesting] Ether Saga Online Bot
07/31/2010 - General Gaming Discussion - 0 Replies
Requesting for ether saga online bot of Perfect World Entertainment ? Free to Play MMORPGS
Anyone can help me?. :) just started playing today.
|
ninja saga hack level and ninja emblem
05/28/2010 - General Coding - 3 Replies
hello everyone!!!
iam a newbie in this forum but i need help!!!
can anybody here explain to me how to hack level in ninja saga cause hacking with charles proxy not work anymore...and teach me how to hack emblem ninja saga!!!
i will apriciated that!!!
or u can add my facebook
[email protected]
and we can shared everything about ninja saga!!!
|
REQUESTING: Ether Saga Multiclient!
09/05/2009 - General Gaming Discussion - 4 Replies
Hello,
I am currently seeking a ether saga multi-client, i'm aware there are bots. Is there anything with just a multiclient?
Thankyoou
|
All times are GMT +1. The time now is 22:34.
|
|