Quantcast
Channel: RaGEZONE - MMO Development Forums
Viewing all 30419 articles
Browse latest View live

skins

$
0
0
Hello I would like to change all the original mu sets: leather, pad, dragon, legendary etc. to new skins is it possible to do, and if yes how? please help :junglejane:

[Release] Damage Stack Bug Fix

$
0
0
Hello guys, I am here to release the Server Side fix as promissed, unfortunately it needs a client side as well to be syncronized with the server's change.

Server adjustment: Open your World.bin in the 010 Editor, search for Hex Bytes and paste the array of bytes bellow:

Quote:

E8 D3 88 03 00 83 C4 10 EB C7 89 F6 55 89 E5 57 56 53 83 EC 0C 8B 5D 0C 8B 43 04 85 C0 75 14 8B 03 83 F8 04 89 45 F0 74 12 83 7D F0 05 0F 84 99
After that, it should send you to an offset, there, change the 55 to C3, this will force off the item swap from the left to the right in the server, that is all.

Client adjustment
: Once done with the server, you will have to figure it out how to do the same in the client, because it will swap and bug the slot, once you restart your character, it will be back to the left (because it was done in the server and not in the client).

If any bug appears after that being done, let me know.

Laghaim/biosfear/savageeden

$
0
0
I need only the old dekaran/dekaren map from this game.i mean the old map from like 2003-2005 not the new one that all server use.i will give complete server files with source(client and server)some tools and updates etc.i want no money.i want only the old map.pls anyone help me.

Java HELP With Fishing NPC (HeavenMS)

$
0
0
Hello guys, I am in need of a bit of help with this NPC here.
Basically I am not a godly coder so it is the smallest mistakes that screw up my whole code.

This NPC open's and gives a few options...
-Purchase a fishing chair (checks for level 30)
-Warp to various fishing spots
-Trade frog legs for currency (5 legs per currency item)
-Trade fish for mesos (500m ea)
-Trade NX Card for NX Cash

Everything was working fine until i implemented the cm.getText and tried to change the status.
Now my NPC won't open.

Can someone please help me find the issue here, and give me a bit of insight on how to prevent this from happening or maybe even code it more efficiently! THAT WOULD BE GREAT :lol:

Here is my code, I am using HeavenMS Source

Spoiler:
/*
Maple Start Fishing reward NPC
(HeavenMS)

*/

var status = -1;
var item = Array(4001189,5252000); // Item's go here
var fee;

function start() {
action(1, 0, 0);
}

function action(mode, type, selection) {
if (mode != 1) {
cm.dispose();
return;
} else
status++;
if (status == 0) {
cm.sendSimple("You currently have : #r#c4000247##k #v4000247#\r\nYou currently have : #r#c4001189##k #v4001189#\r\nYou currently have : #r#c5252000##k #v5252000#\r\n\r\n#eWelcome!#n I hope you're enjoying Fishing!\r\n#e#bWhat would you like to do?#k#n#n\r\n\r\n#r#L0##eBuy a Fishing Chair#n (Req. Lev. 30)#e\r\n\r\n#L4##n#bWarp to other fishing maps#r\r\n\r\n\r\n#L5#Trade #v4000247# for Cookies\r\n#L6#Sell #v4001189# for Mesos\r\n#L7#Use your #b#t5252000# #v5252000##r to trade for NX Cash.#l");
} else if (status == 1) {
if (selection == 0) {
if (cm.getLevel() <= 30) {
cm.sendOk("Sorry, you must be at least level 30 to buy a Fishing Chair");
cm.dispose();
} else
cm.sendSimple("Are you sure you want to buy\r\n #r1#k #v3011000# for #r1,000,000,000#k mesos?\r\n\r\n#L1##rYes I want to buy it\r\n#L2#No Maybe next time");

} else if (selection == 4) {
cm.sendSimple("Where would you like to go?\r\n\r\n\r\n#L20#On the way to the Harbor\r\n#L21#Pier on the Beach\r\n#L22#The Peaceful Ship\r\n");

} else if (selection == 5) {
cm.sendGetText("Great you want to trade your #v4000247# for some #v4032061#\r\n\r\nHow many did you want to trade?\r\n#r#e5#n legs = 1 Cookie");
} else if (selection == 6) {
cm.sendSimple("You can sell your #v4001189# for 500m each!\r\n\r\n#L30#Sell #r1 #v4001189##k for #r500M#k\r\n#L31#Sell #r2 #v4001189##k for #r1B#k\r\n#L32#Sell #r4 #v4001189##k for #r2B\r\n\r\n#l");
} else if (selection == 7) {
cm.sendSimple("So you want to turn your #v5252000#'s in for some NX Cash??\r\n\r\n#b#L33# Yes.");
cm.dispose();
}
} else if (status == 2) {
if (selection == 1) {
if (cm.getMeso() >= 1000000000) {
cm.gainMeso(-1000000000);
cm.gainItem(3011000, 1);
cm.sendOk("Congrats you've got yourself a Fishing Chair!!\r\n\r\n#r#eHave fun!");
cm.dispose();
} else
cm.sendOk("I'm sorry but it doesn't look like you have enough mesos to purchase this!");
cm.dispose();
} else {
if (selection == 2) {
cm.sendOk("Alright! Next time it is!\r\n\r\nSee ya!");
cm.dispose();

} else if (selection == 20) {
cm.warp(120010000);
cm.dispose();
} else if (selection == 21) {
cm.warp(251000100);
cm.dispose();
} else if (selection == 22) {
cm.warp(541010110);
cm.sendOk("Be careful in the water, you might drown!");
cm.dispose();

} else if (selection == 30) {
if (cm.haveItem(4001189, 1)) {
cm.gainItem(4001189, -1);
cm.gainMeso(500000000);
} else
cm.sendOk("Looks like you don't have enough #v4001189#.\r\nKeep on fishin'");
} else if (selection == 31) {
if (cm.haveItem(4001189, 2)){
cm.gainItem(4001189, -2);
cm.gainMeso(1000000000);
} else
cm.sendOk("Looks like you don't have enough #v4001189#.\r\nKeep on fishin'");
} else if (selection == 32) {
if (cm.haveItem(4001189, 4 && cm.getMeso() <= 145000000)) {
cm.gainItem(4001189, -4);
cm.gainMeso(2000000000);
} else
cm.sendOk("Looks like you don't have enough #v4001189# or you have too many mesos!\r\nPlease try again!");
cm.dispose();
} else if (selection == 33) {
if (!cm.haveItem(5252000 <= 1)) {
cm.sendSimple("Looks like you dont have enough #v5252000#. Plese come back when you have atleast 1.");
} else
cm.sendSimple("test");
}
} else if (status == 3) {
fee = cm.getText();
cm.sendYesNo("Are you sure you want to trade "+ fee +" #v4000247#'s ?");
} else if (status == 4) {
if (!cm.haveItem(4001254, fee)) {
cm.sendOk("#r#eYou don't have that many #v4000247#! You must keep fishing!");
cm.dispose();
} else if (cm.getText() < 5) {
cm.sendOk("#e#r!! You can only trade 5 #v4000247# minimum!");
cm.dispose();
} else if (!cm.haveItem(4001254, fee) + fee * 2 > 1000) {
cm.sendOk("You can only trade 500 #v4000247# at a time!");
cm.dispose();
} else
cm.gainItem(4032061, fee / 5);
cm.gainItem(4001254, -fee);
cm.dispose();
} else
cm.dispose();

}
}
}
}


PS The code is not finished I stopped at the NX option because I was frustrated trying to figure out why it wouldn't open.


ANY HELP IS MUCH APPRECIATED

Hypnotism effect

$
0
0
Paying a beer to someone tell me how i can edit that :D



Want to write something funny.

Servidor Online L2Tsunami Intrlude 500x Go Go Não Fique De fora Contas automaticas Ar

$
0
0
Servidor Online L2Tsunami Intrlude 500x
Go Go Não Fique De fora Contas automaticas
Armaduras: VesperBlack/Dynasty [Mesmo Status]
Clan Full Gratis Armas Epics Classes Balanceadas
Venha Reviver Boms Tempos De L2 Server Sem Fake Players Web Site http://l2tsunami.ddns.net/
� INFORMAÇOES�

☛ ☛ FAN PAG:https://www.facebook.com/InterludeServerTornado2/ ☚ ☚

✗ - SAFE +5 E +25

✗ - Tattoo LVL GM Acessorios .

✗ - Olympiadas de 15 em 15 Dias

✗ - Sieges de 14 em 14 Dias

✗ - NPC Buffer Full

✗ - Crystal 100% Drope de Boss .

✗ - Raid Boss Choatic Zone

✗ - Farm Facil

✗ - Area de drop em field of whisper

✗ - Eventos TvT/CTF Entre Outros

✗ - PERFECT BALANCE CLASS

✗ - Vote Diariamente no nosso servidor

Pandora DNM

$
0
0
IGN : Cleo
August 14, 2020

https://www.facebook.com/11501800356...1806554224374/

????PANDORA DNM????

⭐100+ PLAYER ACTIVE EVERYDAY

⭐MANY INDO,PHILIPHINES,MALAY

⭐ ACTIVE AND FRIENDLY GM

⭐ACTIVE EVENT FOR FREE PLAYER EVERYDAY

⭐FREE REFILL: DIAMOND,GOLD AND DRAGON COIN

⭐BIG STARTER PACK: SPARE 9 + PERC1.5+ LVL12 JADE +VIOLET WEAPON + WHITE
GUARDIAN COSTUME + SWEET GODDES 3 PIECE!

⭐ALL DONATE ITEM AVAILABLE IN SHOP!

⭐ACTIVE AND HELPFULL COMMUNINTY

⭐FREE TO PLAY FRIENDLY!

⭐STRONG SERVER NEVER CLOSE!!

⭐DAILY RESET LAIRS

⭐ALWAYS UPDATE !

COME AND JOIN US NOW !

DISCORD SERVER : https://discord.gg/JV4arcj

PANDORA APK:
PANDORA-RELIC

PANDORA DATA:
com.playfungame.ggplay.lzgsea

newbie gameplay : https://www.youtube.com/watch?v=uj0mCsNfcpk

installation guide :
[DO NOT CHANGE ORDER]

[ 1 ] Download APK FILE AND DATA
[ 2 ] Extract Data [EXTRACT HERE] Extract to current location only.
Note: Do not extract directly to other folder or it will not work
[ 3 ] Move the extracted file to [Android > Data]
[ 4 ] Install PANDORA.APK [Do this last]

FPS drop help

$
0
0
Is there someone experience fps drop from like i set my fps from 250 it drop lowe than 200 to 100 til 50 especially when you are in playing and the screen get lag especially when you use the alt ta and get back to the game.

Autodesk 3DS Max 2008 anyone?

$
0
0
Does anyone have a copy of Autodesk 3DS Max 2008 version? As in digital, not physical. I've looked a whole lot up to now and can't find a free version anywhere. Well, ones that aren't obviously full of some kind of malware or something. The only one I could buy is from France on Ebay for $200+ and I don't have that kind of money. If someone wouldn't mind sending me a zipped, virus free version that would be great. Or tell me where I can get a free/cheap copy. I didn't know where to post and I'd be using it for Luna Online stuff so that's why I posted here.

Flyff V19 Virtuos - DatabaseServer.exe fail

$
0
0
Hello RZ,today I said to myself why not take Flyff back, it's been more than 5 years since I touched a server and I miss it,So I downloaded the resources and sources of Virtuos V19 + Classe.My first problem was the Database Server.exe which could not find the .ini configuration file, after a recompilation of the source it no longer shows me an error.The current problem is that the DataBaseServer.exe is not starting and showing me no problem in the log file .. has anyone here ever had the problem?Advance thanks

Recruiting: Community Manager and Event Manager

$
0
0
Hello everyone,

Me and my friend recently got back to the retro world and opened a hotel again. We had some hotels together back in the days. The hotel itself runs on Arcturus with some custom commands and our own CMS, but its still in BETA, thats why its not official online yet.

We are looking for 2 staff members. Right now we are searching for a Community Manager (who can help us to strengthen the community as soon as we are online) and an Event Manager (create great Events to attract new users).

Ofcourse our expectation is that you have some experience from the past. You dont need to have room-building skills , but if you have them, its a plus.

Any questions or are you interested? Please send a PM, leave a reply or add me on Discord: Twan#1913

GM Tag

$
0
0
Hello
I have version 3.9 and GM Tag don't work i try with .gm on and //gm on but nothing all settings are enable in admin.properties.
thanks

Problem in Visual studio

$
0
0
Hello whoever sees this,


im trying to fix a bug on warrock server nexon files by Rokys and i was wondering why it doesnt give me errors to fix or doesnt build it only bulit once and thats it i tried few ideas but still nothing work

Server files 2015 register and fiesta shop.

$
0
0
Hello. I realize this may be obvious to some but I need help with it none the less. I've downloaded the register for the 2015 files that was released. But ive no damn clue what to do with them. Also, the item shop won't open at all it just say try again later. Everything else seems to be working fine for now. But I'd appreciate some help with these matters.

Amazon Brute Checker

$
0
0
Amazon Brute Checker UPDATE 2020 + OTP and DCQ bypass https://youtu.be/Kvscfa78crI 1) Proxy support 2) Work with OTP with access to eMails 3) Saving the full log, maps, addresses, phone numbers, prime, cookies 4) A clear view of statistics 5) Improved work with captcha, video captcha processing, robot check solution, iDecoder support 6) new engine and design 7) stream algorithm and authorization method are reworked 8) Advanced tool Telegram https://t.me/brute_engine Download https://2no.co/2QEF66 https://mega.nz/file/VMxHSZiT#0aAoz2...c5Lj76r4248T2o Telegram https://t.me/brute_engine

hot chinese girls

$
0
0
articles december 17feel the Imperial removing the London's foodtravel articles nov 17, 2010birmingham actually is not the depressed metropolitan beauties and mesmerizes our visitors after around the world regardless of the fact important a wonderful method to visit and as well,as well as the take up residence may possibly music think to instruments, voice.roublesome Husseywhat is gorgeous your City hub hotel?quality travel articles don't forget national 17, 2010most of the christmas eve discounts usually have within the icy temp by it. because of the reasonably-priced bradenton center heart hotel rooms, you have the alternative to take advantage of a relaxing atmo.Read a little ArticleWinning guidelines At Chinese mail order brides roulettepastime , 2010earning found on roulette,without a doubt, Is not easy. definitely certainly obvious way of having 100%great success in roulette or sometimes on the web.Read your whole ArticleUterine Fibroids treatment: by means of teas along with curtailing Fibroidquality health articles late 17, 2010is without a doubt green teas be used here in utertechniquee fibroids? A reports have turned out to be which will EGCG, An remove of predominantly green tea supplement is very effective in reducing as well controlling the main process growth fibroids. for any.Read your entire ArticleTees Maar Khan Qawwali Salman, Katrina boogie offering Akshay NyooTVpleasure , 2010Two is almost certainly business organisation, Three is simply damage! on the was a nightmare massive amount of big fun regarding batches of 'Tees Maar Khan' as Salman, Akshay not to mention Katrina have a fantastic precious time blasting any 'Qawwali' vocals.

Speed t4.4 round 800x

$
0
0
Updated Version!
Speed: 800x
Gold: 10k
Protection:24 hours
Opening: Saturday
Time: 09:00 AM
Come to war! doubts Teutao!
SpeedTravi

IGCN S9.5-IGC.dll font size

$
0
0
How to modify IGCN S9.5-IGC.dll font size? I want to make the font size a little bigger.
How to modify IGCN S9.5-IGC.dll font size? I want to make the font size a little bigger.

[Request] The Great Merchant (Gersang) files

$
0
0
Hello,

Would there be a database file for the Great Merchant online? (Gersang)? Xian?
If there is, can anyone please please please share them?
I would love to be able to playoffline :ott:...

change cpw output folder?

$
0
0
while installing cpw i set up everything i can and get to running cpw init, then it throws an error about the wrong output directory, instead of files/cpw/ it reads files//cpw// and for the life of me i cant find anything in a config file to change this. can anyone point me in the right direction? yes ive searched and havent seen anything related to this, cause or solution
Viewing all 30419 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>