Sei sulla pagina 1di 17

Eggs: BoostersModel.prototype.

reset

Sidekickmax

InstanceCache.prototype.writeDirtyInstancesToState
Xp 1317000
Lvl50

Magnet

this.player.magnetReach = 500;
this.magnetTimer.active = true;

bullet
this.player.shootTimeout = 0;

this.doubleShotTimer.active = true;

//Max level of all sidekicks:

var _r1 = new RegExp("Item:sidekick:.*");

for (var i = 0; i < e.instances.length; i++) {


if (_r1.test(e.instances[i].modelID)) {
e.instances[i].stats.maturity = 3;
e.instances[i].stats.xp = 125800;
e.instances[i].stats.zodiac = 2;
e.instances[i].stats.zodiacBonus = 2;
}
}

https://www.epochconverter.com/
Code to stop the game:
UpdateGameStateCommand.prototype.updateGame

Code to change time:


Date.prototype.getTime = function() { return 1502847619000.00 };

Types of eggs!
"common", "bronze", "silver", "gold", "magical", "legendary"
//EVENT SIDEKICKS
var r = 10;
for (var c = 0; c < r; c++){
GC.app.mvc.sendNotification("PlayGachaCommand", {
activeEventIDs:["philippineDragonFestival","dragonsOfTheLostCity",
"magnanimousUnleashed"],
type: "bossraid", isFree: true});
}

//LEGENDARY
var r = 50;
for (var c = 0; c < r; c++){
GC.app.mvc.sendNotification("PlayGachaCommand", {
activeEventIDs:["smartGiveaway"],
type: "legendary", isFree: true});
}

//SILVER
var r = 10;
for (var c = 0; c < r; c++){
GC.app.mvc.sendNotification("PlayGachaCommand", {
activeEventIDs:["smartGiveaway"],
type: "silver", isFree: true});
}

//BRONZE
var r = 10;
for (var c = 0; c < r; c++){
GC.app.mvc.sendNotification("PlayGachaCommand", {
activeEventIDs:["smartGiveaway"],
type: "bronze", isFree: true});
}

//MAGICAL
var r = 10;
for (var c = 0; c < r; c++){
GC.app.mvc.sendNotification("PlayGachaCommand", {
activeEventIDs:["smartGiveaway"],
type: "magical", isFree: true});
}

//GOLD
var r = 10;
for (var c = 0; c < r; c++){
GC.app.mvc.sendNotification("PlayGachaCommand", {
activeEventIDs:["smartGiveaway"],
type: "gold", isFree: true});
}

//COMMON
var r = 10;
for (var c = 0; c < r; c++){
GC.app.mvc.sendNotification("PlayGachaCommand", {
activeEventIDs:["smartGiveaway"],
type: "common", isFree: true});
}

A0404b4b t
80c57eb0 c

Query.prototype.run
Onstartgame

nocostlegen
onUpdate

this._cost=

Lzr un
this.player.ability.chargeBy = "bullet";

30 SID

GachaCellView.prototype.onCellClicked //

// "bossraid" O "legendary"

var r = 50;
for (var c = 0; c < r; c++) {
GC.app.mvc.sendNotification("PlayGachaCommand", { type: " legendary ", isFree:
true});
}

XP: ccfcea68-5ad0-3f02-9565-f4a496b398e6
Chardmge

var l = Object.keys(e);
for (var c = 0; c < l.length; c++) {
var h = e[l[c]];
if(h.schemaPrimativeID.includes("_stat1")){
h.maximum = 999;
h.value = 999;
}
}

#**Set your account level:**#

var l = Object.keys(e);
for (var c = 0; c < l.length; c++){
var h = e[l[c]];
if(h.schemaPrimativeID.includes("stat:xp"))
{
h.value = 170000;
}
}

var _r1 = new RegExp("sidekick......maturity");


var _r2 = new RegExp("sidekick....._zodiac_bonus");
var _r3 = new RegExp("sidekick....._xp");
for(var i in e){
if (_r1.test(e[i].schemaPrimativeID)) {
e[i].maximum=6;
e[i].value=6;
}
if (_r2.test(e[i].schemaPrimativeID)) {
e[i].maximum=2;
e[i].value=2;
}
if (_r3.test(e[i].schemaPrimativeID)) {
e[i].maximum=200000;
e[i].value=200000;
}
}

unlck
var l = Object.keys(e);
for (var c = 0; c < l.length; c++) {
var h = e[l[c]];
if(h.schemaPrimativeID.includes("item_character") && h.state.includes("locked")){
h.state = "idle";
}
}

Opnall
Altlftclk

Mxlvl
var l = Object.keys(e);
for (var c = 0; c < l.length; c++) {
var h = e[l[c]];
if(h.schemaPrimativeID.includes("_stat1")){
h.maximum = 999999;
h.value = 999999;
}
}

Mxcandt
var l = Object.keys(e);
var values = {coins: 999999, trophies: 99999, xp: 1400000};
for (var c = 0; c < l.length; c++) {
var h = e[l[c]];
if(h.schemaPrimativeID.includes("currency:trophy")){
h.balance = values['trophies'];
}
else if(h.schemaPrimativeID.includes("stat:xp")){
h.value = values['xp'];
}
else if(h.schemaPrimativeID.includes("currency:coin")){
h.balance = values['coins'];
}
}

Change sidekick
var _r1 = new RegExp("_maturity");
var _r2 = new RegExp("_zodiac_bonus");
var _r3 = new RegExp("_xp");
var _r5 = new RegExp("Item");
var _r4 = new RegExp("WC11"); //n change
for(var i in e){
if(_r4.test(e[i].schemaPrimativeID)){
if (_r5.test(e[i].schemaPrimativeType)) {
e[i].schemaPrimativeID="sidekick:NC10"; //n want
}
if (_r1.test(e[i].schemaPrimativeID)) {
e[i].maximum=3;
e[i].value=3;
}
if (_r2.test(e[i].schemaPrimativeID)) {
e[i].maximum=2;
e[i].value=2;
}
if (_r3.test(e[i].schemaPrimativeID)) {
e[i].maximum=200000;
e[i].value=200000;
}
}
}

var _r1 = new RegExp("jade_s"); var _r2 = new RegExp("arcana_s"); for(var i in e){ if
(_r1.test(e[i].schemaPrimativeID)) { e[i].maximum=999999; e[i].value=999999; } if
(_r2.test(e[i].schemaPrimativeID)) { e[i].maximum=999999; e[i].value=999999; } }

Currency & Xp (CAN BE DIFFRENT FOR YOU, IF SO ASK FOR HELP):

Cash:
80c57eb0-2acb-36ac-89f9-95f0481c77a6
TROPHY:
a04c4b4b-7d76-3479-84b0-646b305d32b4

YOUR XP:
ccfcea68-5ad0-3f02-9565-f4a496b398e6
-------------------------------------------------------------(edited)
Character DAMAGE (CAN BE DIFFRENT FOR YOU, IF SO ASK FOR HELP):

Jade's key:
13caf997-8945-3ec2-a64b-5995b002236a -

Fiona's key:
4c760b19-ee4a-34c2-bf58-4c2580f064d0 -

Arcana's key:
92dc7c9b-a35b-3363-ae78-3ef5ef11d14a -

Sophia's key:
f55d153e-6007-32a5-894e-41217e3ff851 -

Lenore's key:
2a55377d-f12b-3fe8-b927-e04f6caf8d3e -

Alice's key (else named as standard):


ad0ba92c-49be-3dd4-a57e-9937c835ee7a -

Aurora (else named as magnet):


009b03cb-7e68-318a-96a7-a96f0aa48a3e -

Lily's key (else named as coin):


3d2e2f80-2f42-3dac-b41e-b4948b93d6b1
-------------------------------------------------------------(edited)
Character UNLOCK (CAN BE DIFFRENT FOR YOU, IF SO ASK FOR HELP):

Lily's key (else named as coin):


36273f37-0f38-3c24-a082-31e6542f612c

Jade:
0b3a9512-4f41-3903-8705-2df4c7427ce3

Fiona:
012a6243-4fe1-3b3f-9ef2-305b0f609f81

Arcana's key:
fe8eac2c-3cc0-3dec-b01d-9e73c4e1573a
Sophia's key:
48221549-0cb2-3f55-9e57-ed1d230391bc

Lenore's key:
dee4fd48-b6c0-3816-a214-4e6ff3176277

Alice's key (else named as standard):


07ab2927-47da-39c1-a93e-f002211b36b9

Aurora (else named as magnet):


021e4910-26aa-36f6-9b2e-40e7fa27f124
-------------------------------------------------------------(edited)
Default Side Kicks IDS:

FC00: Raggles, Rageon, Ragore. Normal.


FC01: Mara, Maradon, Maranasur. Legendary.
FC02: Cinde, Voladile, Infernus. Rare.
FC04: Lacabolt, Vulcanic, Megamech. Legednary.
FC05: Rex, Raxilius, Renosaur. Normal.
FC06: Minya, Minyara and Maximar. Legendary.
FC07: viking, Viking, Viktron, Viktorious. Normal.
FC09: Fea, Feanor and Feandroth. Rare.
FC10: Cretis, Toxicus, Mordroth. Rare.
FC11: Avi, Avilon, Suldal. Legendary.
FC12: Xiaolong, Huolong, Jinlong. Legendary.
FC13: Magnis, Magmus, Magnanimous. Legendary

LC00: Bauble, Lumen, Emprtr. Normal.


LC01: Glowbean, Gloria, Glorious Rex. Rare
LC03: Furlix, Furline, Furleone. Legendary.
LC05: Loreen, Lureli and Lurelith. Legendary.
LC06: Sunn, Lune and Celeste. Legendary.
LC09: Estel, Estellis and Lysenthius. Rare.
LC10: Kit, Swift and Vicza. Legendary.

NC00: Moss, Shrubb, Forrest. Rare.


NC01: Flo, Floria, Florastyx. Norm
NC02: Skout, Sage, Tuskan Legendary
NC03: Kyu, Fleure, Amorice Legendary
NC04: Lastro, Landaro, Landedel. Norm.
NC05: Pika, Pikito, Pikadron. Normal.
NC07: Raiia, Raiianus and Ray & Ian. Rare.
NC09: Coqi, Coquira,Coqistar. Legendary
NC10: tsijari, Tanok, Itzamatul. Legendary.
SC00: Moonbite, Moonchomp, Mooneater. Norrmal.
SC01: Clipsy, Astreon, Eclipsis. Rare.
SC02: Umbra, Umbrathyst, Umbrasaur. Legedndary.
SC03: Riblets, Numbskull, Darkfrost. Legendary.
SC04: Gilli, Giljan, Giljanero. Normal.
SC06: Ilco, Ilcode, Ilcogena. Normal
SC08: Eskari, Escudo and Etrusco. Legendary.
SC09: Bullet, Gladius, Silvar. Rare.
SC10: Lethio, Lordos, Lordanus. Legendary.
SC11: Desmo, Desmodius and Desmodontes. Rare.

WC00: Squirt, Phinn, Salimander. Normal.


WC01: Nym, Ondas, Poseidyn. Rare.
WC02: Unagli, Leviathan, Tempestius. Legendary.
WC04: Chase, Huntsea and Tsuna. Rare.
WC05: Bubbles, Seafoam, Crestacia. Normal.
WC06: Blizzle, Glayche, Xero. Rare
WC08: Yaen, Yave and Yavethior. Legendary.
WC13: Corra, Corrado and Corradinius. Rare.
-----------------------------------------------------------------(edited)
⎝⧹ T O M A S ⧸⎠ - 06/20/2017
Sidekicks and Characters you can ONLY get from the EVENTS (Boss raid/ red eggs):

Event 1:
Character:
-Jade
Sidekicks:
-WC08: Yaen,Yave, Yavethior
-SC08: Eskari, Escudo, Etrusco
-NC10: Tsijari, Tanok, Itzamatul
-LC10: Kit, Swift, Vicza
-LC06: Sunn, Lune, Celeste
-LC05: Loreen, Lureli, Lurelith
-FC06: Minya, Minyara, Maximar

Event 2
Character:
-Arcana
Sidekicks:
-WC14: Ursus, Urseus, Urselius
-FC08: Feri, Fieri, Fiersun
-WC11: Jemtwyst, Jamailla, Jemailla
-LC08: Roa, Rolan, Rolandro
-NC08: Trib, Tribiani, Tribanea
-SC05: Chesyre, Chesyre, Zimequest(edited)
5ph dragons

var _r1 = new RegExp("_maturity");


var _r2 = new RegExp("_zodiac_bonus");
var _r3 = new RegExp("_xp");
var _r4 = new RegExp("LC01");
var _r5 = new RegExp("LC08");
var _r6 = new RegExp("SC09");
var _r7 = new RegExp("WC06");
var _r8 = new RegExp("WC11");
var _r9 = new RegExp("Item");
for(var i in e){
if(_r4.test(e[i].schemaPrimativeID)){
if (_r9.test(e[i].schemaPrimativeType)) {
e[i].schemaPrimativeID="sidekick:FC23";
}
if (_r1.test(e[i].schemaPrimativeID)) {
e[i].value=3;
}
if (_r2.test(e[i].schemaPrimativeID)) {
e[i].value=2;
}
if (_r3.test(e[i].schemaPrimativeID)) {
e[i].maximum=200000;
e[i].value=200000;
}
}
if(_r5.test(e[i].schemaPrimativeID)){
if (_r9.test(e[i].schemaPrimativeType)) {
e[i].schemaPrimativeID="sidekick:LC23";
}
if (_r1.test(e[i].schemaPrimativeID)) {
e[i].value=3;
}
if (_r2.test(e[i].schemaPrimativeID)) {
e[i].value=2;
}
if (_r3.test(e[i].schemaPrimativeID)) {
e[i].maximum=200000;
e[i].value=200000;
}
}
if(_r6.test(e[i].schemaPrimativeID)){
if (_r9.test(e[i].schemaPrimativeType)) {
e[i].schemaPrimativeID="sidekick:NC23";
}
if (_r1.test(e[i].schemaPrimativeID)) {
e[i].value=3;
}
if (_r2.test(e[i].schemaPrimativeID)) {
e[i].value=2;
}
if (_r3.test(e[i].schemaPrimativeID)) {
e[i].maximum=200000;
e[i].value=200000;
}
}
if(_r7.test(e[i].schemaPrimativeID)){
if (_r9.test(e[i].schemaPrimativeType)) {
e[i].schemaPrimativeID="sidekick:SC23";
}
if (_r1.test(e[i].schemaPrimativeID)) {
e[i].value=3;
}
if (_r2.test(e[i].schemaPrimativeID)) {
e[i].value=2;
}
if (_r3.test(e[i].schemaPrimativeID)) {
e[i].maximum=200000;
e[i].value=200000;
}
}
if(_r8.test(e[i].schemaPrimativeID)){
if (_r9.test(e[i].schemaPrimativeType)) {
e[i].schemaPrimativeID="sidekick:WC23";
}
if (_r1.test(e[i].schemaPrimativeID)) {
e[i].value=3;
}
if (_r2.test(e[i].schemaPrimativeID)) {
e[i].value=2;
}
if (_r3.test(e[i].schemaPrimativeID)) {
e[i].maximum=200000;
e[i].value=200000;
}
}
}

Changesidekick
var _r1 = new RegExp("_maturity");
var _r2 = new RegExp("_zodiac_bonus");
var _r3 = new RegExp("_xp");
var _r5 = new RegExp("Item");
var _r4 = new RegExp("NC04"); //sidekick you want to change
for(var i in e){
if(_r4.test(e[i].schemaPrimativeID)){
if (_r5.test(e[i].schemaPrimativeType)) {
e[i].schemaPrimativeID="sidekick: NC10"; //to sidekick you want
}
if (_r1.test(e[i].schemaPrimativeID)) {
e[i].maximum=3;
e[i].value=3;
}
if (_r2.test(e[i].schemaPrimativeID)) {
e[i].maximum=2;
e[i].value=2;
}
if (_r3.test(e[i].schemaPrimativeID)) {
e[i].maximum=200000;
e[i].value=200000;
}
}
}

Fefef

Your Account Successfully created!


Habis buat akun Jangan lupa kasi support ya..Thanks

IP Address: sg2.boostvpn.us
Username: delramirez-boostvpn.us
Password: Prosupport1
OpenSSH: 22, 109
Dropbear: 443, 110, 143
Squid: 8080, 3128
Exp: 2017-08-02 08:09:46
Note: Please Do Not Repost Account or use Multi login because it will be deleted
from server.

First, create your ssh account:


www.boostvpn.us
www.flashssh.com
www.fastssh.com
www.speedssh.com
www.skyssh.com
www.tcpvpn.com

Or you can visit my new thread for a ssh account here:


https://www.phcorner.net/t/ssh-acco...ers-these-are-open-for-all-so-come-in.365268/

Second, find some working Remote proxy/Squid proxy [Only if your ssh account
doesn't provide squid proxy/remote proxy]:
www.premiumproxy.top
www.spys.ru/en/
www.proxydb.net
[Dito niyo na magagamit note niyo, copy2 din pag may time ng mga RP]

Dito niyo naman pwedeng itest ang RP dapat all green lahat para mas swabe ang
speed:
www.httptunnel.ge/proxychecker.aspx
Example:
IMG_0344.jpg

For ping test [The lower the "ms" the better]:


www.ping.eu/ping/

NOTE: Dapat kung ano ang server ng ssh mo, dapat ganon din ang sa remote proxy
mo para to the go agad! XD

Third, payload generator:


Ganito naman ako maggenerate ng payload:
•Split/instant split
•Front inject
•Pa tch/propa tch
•Keep alive
URL/Host example:
Single payload:
ASP.NET

Multi-payload [Use Rotate]:


ASP.NET;VB.NET

Multipayloads are always separated with this :emoji_point_right: ;

For configuring "NO LOAD":


Always use "Back query"

Installing Windows Mobile Device Center is not necessary. The peripheral just
needs a standard bluetooth COM port driver.

1. In the Bluetooth device window, right-click the phone icon and select 'Properties'
2. Click 'Hardware' tab then 'Properties'
3. Click 'Change settings'
4. Select the 'Driver' tab, then 'Update driver...'
5. Click the second option: "Browse my computer for driver software"
6. Click to choose the option "Let me pick from a list of device drivers on my
computer"
7. From the list "Common hardware types", Select 'Ports (COM & LPT)'
8. Two droplists appear. Choose 'Microsoft' in the "Manufacturer" list, then
'Standard Serial over Bluetooth link' in the "Model" list
9. A warning window pops up. Ignore it by clicking 'Yes'
10. Presto, the device functions properly..

OFFICIAL LETTER OF OFFER

Dear Mr. Randel,

Thank you for your interest in the Private Pilot License Program in DELTA AIR
INTERNATIONAL AVIATION ACADEMY, INC (DAIAA), now a proud member of
AMA EDUCATIONAL SYSTEM (AMAES) through DELTA, it aims to raise the bar in
flight training in the Philippines that puts emphasis on quality and safety.

Please take your time to study this program.

The course is a six (6) months Private Pilot License Program. The tuition fee for this
program is Php 570,00.00. However, considering the fluctuations in exchange rates,
prices of aviation gas, parts, and other important cost consideration, please note that
prices are subject to change WITH prior notice.

After the training, a total of 55 flight hours of flight time is earned.

Please refer to the breakdown of tuition fee as shown below:

Php 570,000.00

6 Months Fast Track (55 hours flight time): Private Pilot License Program
Flight Time Breakdown

Cessna - 152 = 55 hours


MCX Redbird Simulator = 10 hours

Ground Schooling

PPL Ground Schooling = 135 hours

Flight Training

Cessna 152

Documentation:

A. National Bureau of Investigation

1. NBI Clearance

B. Civil Aviation Authority of the Philippines

1. CAAP Medical Certificate


2. ELP
3. Licensing Fees (SPL)
4. Examination Fees
5. Check rides (PPL)

C. National Telecommunications Communication

1. NTC License

Note: Applicable to one (1) attempt only. Other costs and fees incurred in succeeding
attempts are shouldered by the student pilot.

Package Inclusions:

1. Pilot Kit/ Map


2. 2 sets of uniforms

Training Schedule and Payment Information

Total Cost of Program …………………………………… Php 570,000.00

Training PHASE 1

Down payment : (Upon enrollment w/ 15 hrs flying) …… Php 200,000.00

Training PHASE 2

2nd Installment (starts with 16 to 30 hrs flying) …… 150,000.00

Training PHASE 3

3rd Installment (starts with of 31 hrs. to 45 hrs. flying) ….. 150,000.00

Training PHASE 4

4th Installment (starts with of 46 hrs. to 55 hrs. flying) ……. 70,000.00

Implementing Guidelines

1. The training phase and fees schedule were given. Please comply with the schedule so
as not to affect your flight training.

2. Each Training Phase covers listed DELTA AIR INTERNATIONAL AVIATION


ACADEMY services and these services shall only be carried out upon payment (as
scheduled).

3. Initial payment for tuition fee shall be in cash or check payable to DELTA AIR
INTERNATIONAL AVIATION ACADEMY, INC and can be paid directly in DAIAA’s
office, # 0274 Barangay Lumang bayan, Plaridel, Bulacan.
We hope you find everything in order. Should you have any questions or concerns,
please feel free to get in touch with me through 63(44)-7946186/ 63(44)-7607711.

Kind regards,

Ms. Liberty Tan


Student Affairs Officer

Noted by:

Mr. John Lorenz E. Siasoco


Sales & Marketing Manager

Potrebbero piacerti anche