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

How to set skill data

$
0
0
How to set skill data same as starter skill data? Tried to create a query but it doesn't allow the where thing.

Code:

UPDATE cabal_new_character_data
SET [SkillData]
= 0x02000100004D01014600540101480055010149009001014B007C01014E007D01014F007E010150007F010151000100010100A501016600A601016700DA01016800E101016900E201016A00E301016B00
where [ClassType] = 1


REupload Files Cabal X-Pasa 6.7.3 + WEBSITE+DATABASE+Cliente

$
0
0
-DATABASE+WEBSITE+CLIENTE + SERVER FILES Xpasa EP26+:

https://drive.google.com/file/d/1TjR...ew?usp=sharing

___________________________________________________
Client: https://drive.google.com/file/d/1GaJ...ew?usp=sharing

Mini tutorial
Passa os arquivo Files cabal xpasa pro etc/cabal/ ' e em WorldSvr_xx_xx modifique todos os ip 192.168.25.25 para o seu ip do centos

Pass the files Files cabal xpasa pro etc / cabal / 'and in WorldSvr_xx_xx modify all ip 192.168.25.25 for your ip of the cent

By

Video What is happening?!?

Ackemina 3.0

$
0
0
Hey guys!

Does anyone know what this problem might be?




[DGCreateItemRecv] Invalid Account

$
0
0
anyone can help about this error
give lag /delay in dataserver
MSSQL 2012 R2

12:08:30 [DGCreateItemRecv] Invalid Account [6001](slot1)
12:08:31 [DGCreateItemRecv] Invalid Account [6001](slot1)
12:08:32 [DGCreateItemRecv] Invalid Account [6001](slot1)
12:08:33 [DGCreateItemRecv] Invalid Account [6001](slot1)
12:08:33 [DGCreateItemRecv] Invalid Account [6001](slot1)
12:08:46 [DGCreateItemRecv] Invalid Account [6001](slot1)
12:08:46 [DGCreateItemRecv] Invalid Account [6001](slot1)
12:08:47 [DGCreateItemRecv] Invalid Account [6001](slot1)
12:17:59 [DGCreateItemRecv] Invalid Account [6008](bupatch)
12:17:59 [DGCreateItemRecv] Invalid Account [6008](bupatch)
12:17:59 [DGCreateItemRecv] Invalid Account [6008](bupatch)
12:17:59 [DGCreateItemRecv] Invalid Account [6008](bupatch)
12:17:59 [DGCreateItemRecv] Invalid Account [6008](bupatch)
12:18:00 [DGCreateItemRecv] Invalid Account [6008](bupatch)
12:18:00 [DGCreateItemRecv] Invalid Account [6008](bupatch)
12:18:00 [DGCreateItemRecv] Invalid Account [6008](bupatch)

FairyMU S16 - OPENS FRI 12 MARCH - SPECIAL EDITION - NEW SETS/WINGS/BOSSES AND MAPS

$
0
0


Server information
Full season 16 special edition
Location: US
EXP: 99.999x :ott: VERY EASY :ott:
Mobs: SOLO HUNT monsters with good drops
Ancients: All ancients items are upgraded, so fun hyon battles are there :D
Ruud: Ruud sets are upgraded and drop from minibosses and events like BC
Start items: All players start with help-zen and winter gear :thumbup:

:love:Specials: every 1 minute you receive 34 wcoins = 2040 wcoins every 1 hour online!:love:
https://www.fairymu.com

- Easy mixing, fast errtels, wings and all other chaosmachines upgrades are 99% succesrate
- Improved 4th class XP, gain fast max level to enjoy season 16 to the fullest
- Good x-shop and wcoins drops ingame


https://www.fairymu.com

[HELP] Role of variables belonging to CheckPassword, AccountInfo

$
0
0
Hi. I am a Korean who is developing Korean MS.
(All of the projects develop are based on Eric's OrionAlpha. Thank you Eric.)

Currently, getCharList has been implemented, and CheckPassword and reorganize the AccountInfo etc, so I found a few during the analysis.

Before I ask you a question, I'll show you a picture.




Quote:

public static OutPacket onWorldInformation(WorldEntry world) {
OutPacket packet = new OutPacket(SendHeader.WorldInformation);
packet.encodeByte(world.getWorldID()); //worldID
packet.encodeString(world.getName()); //worldName
packet.encodeByte(world.getFlag()); //worldFlag

packet.encodeString("Snow Project\r\n"); //World Introduce Message
packet.encodeShort(200); //Summer Vacation Event ExpRate
packet.encodeShort(200); //Summer Vacation Event DropRate

packet.encodeByte(world.getChannels().size()); //channelSize
for (ChannelEntry channel : world.getChannels()) {
packet.encodeString(world.getName() + "-" + (channel.getChannelID() + 1)); //channelName
packet.encodeInt(channel.getUserNo()); //channelPermissionUser
packet.encodeByte(channel.getWorldID()); //channelWorldID
packet.encodeByte(channel.getChannelID()); //channelID
packet.encodeByte(0); //??
}
return packet;
}
Quote:

public static OutPacket onAccountInfoResult(LClientSocket socket, int type) {
OutPacket packet = new OutPacket(SendHeader.AccountInfoResult);
packet.encodeByte(type);
switch (type) {
case 0:
case 12: {
/**
* @KMST 1029
* @SetAccountInfo
* this->m_dwAccountId = dwAccountId;
* this->m_nAccountGender = nGender;
* this->m_nGender = nGender;
* TSecType<unsigned char>::SetData(&this->m_nGradeCode, nGradeCode);
* v12->m_nAge = nAge;
* v12->m_nPurchaseExp = nPurchaseExp;
* v12->m_dtChatUnblockDate = dtChatUnblockDate;
* v12->m_nChatBlockReason = nChatBlockReason;
* v12->m_bManagerAccount = bManagerAccount;
* v12->m_bTesterAccount = bTesterAccount;
* v12->m_bSubTesterAccount = bSubTesterAccount;
* v12->m_nVIPGrade = nVIPGrade
*/
packet.encodeInt(socket.getAccountID());
packet.encodeByte(socket.getGender());
packet.encodeByte(socket.getGradeCode());
packet.encodeString(socket.getNexonClubID());

packet.encodeInt(9); //SSN ? Create Character
packet.encodeByte(7); //SSN Use ? Create Character
packet.encodeByte(0); //purchase Exp ?
packet.encodeByte(0); //pBlockReason ?
FileTime time = new FileTime(System.currentTimeMillis());
packet.encodeFileTime(time);//chatBlockTime
packet.encodeString("Eric"); //VIPGrade ?
packet.encodeString("Eric"); //Tester UserName
From the above

packet.encodeInt(9); //SSN ? Create Character
packet.encodeByte(7); //SSN Use ? Create Character
packet.encodeByte(0); //purchase Exp ?
packet.encodeString ( "Eric"); // VIPGrade?


The role of this content and

packet.encodeInt(channel.getUserNo()); //channelPermissionUser
packet.encodeByte(channel.getWorldID()); //channelWorldID
packet.encodeByte(channel.getChannelID()); //channelID
packet.encodeByte(0); //??

Also, I am curious about the role of GameRoomClient among CheckPassword Recv Packets.

I'm curious about this... can you help?
Referred to KMST 1029 PDB.

And the two successful results of CheckPasswordResult are 0 and 12.
0 = Normal, 12 = PC Room right?

Lastly, I am sorry to ask a lot of questions because I am not enough...:(:

Consideration About Last Chaos in 2021 like upgrading DirectX, Boost ecc..

$
0
0
Hello to everybody.
I'd like to know any advice by other developers.
Do you think make sense upgrade version, refactor code ecc.. to increase last chaos performance?

LC has old Engine, i think that implementing Directx9 and newer version of libs that use, like log4cxx and boost would be nice.

Have anyone tried with x64 bit implementation?

Cheers!:lol::D:

Bike Option Scroll

$
0
0
in the X-Pasa files there are no Bike Option Scrolls (Ultimate) anyone with an idea of how to add such scrolls in the files?

Add Stats Juver Source

$
0
0
I merge the addstats command in juversource

when i try it on emulator it says "Success" but the point not accurately adding in Character stats

Did i miss something?

https://ibb.co/W2jRY2C


*Edited

They said that you need to recode reqstatsup on other thread, Can you help with this please?

A rsc game that is pking and staking

$
0
0
if you want to pk and stake, the fun parts on runescape classic then id reccomend try out rscarea.com. Log in get a party hat then train quickly to buy supplies,wepons, armours and be quick to pk and stake.

just thought id put this here if people were interested to try out runescape classic as i love it too

New Universe POLARAS Opens Today! OGameTurkey.Com

$
0
0
New Universe POLARAS Opens Today!

PRE-REGISTRATIONS STARTED.

OPENING: 20:00


Game Speed: x500
Fleet Speed: x5
Production Speed: x1000

Take your place in the galaxy with our mobile compatible universe.

https://www.ogameturkey.com

Need help setting up BnS Private Server

$
0
0
I know the interest in this game is somewhat declining. But Ive been stuck at it for 3 days. Tried multiple ways to no avail. Maybe I inserted the IP's wrong or some sort, but if anyone is bothered guiding me, my discord is Chadster#1090. If anyone is successful in helping, a small sum of payment(AUD) is given through paypal if you like. DM in discord is preferred. First Come First Serve. First to help me setup the server, and login the game receives payment. No Bullshit :P.

Ill edit the post if someone has successfully helped me.

Discord: Chadster#1090

Through VM by argeus99 [Link: http://forum.ragezone.com/f1025/blade-soul-vm-1178910/]
Little context of what I'm experiencing right now or trying to do:
When trying to create an account through AuthSrv:



All Daemons are up and running
All Spawnsrv services are stable
Yet still getting a timeout response.

Through my own desktop with all the correct packages installed(maybe?):
However, this time AuthSrv did create an account for me and stored it into the database, however I still wasn't able to login. Even the test001 account didn't work. Also tried with test001@ncsoft.com

All Daemons were up and running
All Spawnsrv services were stable
Client version China-v175

More details will be provided in Discord DM's. I reside in Oceania so care for time zone difference.

Discord: Chadster#1090

Loc files encrypt problem

$
0
0
Hello guys,

First of all sorry for creating another account but my first account Peter252 is kinda bugged, cant change password because it says that im entering incorrect password all the time even after password reset...

But i've problem with .loc file encrypting.

I decrypted it with bdo_decrypt.exe and everything was cool, changed name of window title but when i tried to encrypt it it produce empty .loc file with 1 KB weight.


Any ideas how to fix it ?

Anarchy system. Widc_button error and etc

$
0
0
hello. i need some help!
im adding anarchy system in my project server
in fresh install K18 by ketchup.

i copy the important code in nanus flyff.

at first rebuild i got sucessfully apear. when i click Anarchy Buffs. no windows are apearing.
i look for error logs. tell that can't find dds and png. after placing the dds and png in item and resource. error logs are not apearing any more. but when i click the Anarchy Buffs still no windows apearing.


and this the another error.
Code:

2021/ 4/11  20:30:18  Awakening: nDst = 1, dwTotalProb = 15099946182021/ 4/11  20:30:18  Awakening: nDst = 2, dwTotalProb = 15099946182021/ 4/11  20:30:18  Awakening: nDst = 3, dwTotalProb = 15099946182021/ 4/11  20:30:18  Awakening: nDst = 4, dwTotalProb = 15099946182021/ 4/11  20:30:18  Awakening: nDst = 9, dwTotalProb = 15099946182021/ 4/11  20:30:18  Awakening: nDst = 77, dwTotalProb = 15099946182021/ 4/11  20:30:18  Awakening: nDst = 11, dwTotalProb = 15099946182021/ 4/11  20:30:18  Awakening: nDst = 24, dwTotalProb = 15099946182021/ 4/11  20:30:18  Awakening: nDst = 79, dwTotalProb = 15099946182021/ 4/11  20:30:18  Awakening: nDst = 66, dwTotalProb = 5235501822021/ 4/11  20:30:18  Awakening: nDst = 52, dwTotalProb = 15099946182021/ 4/11  20:30:18  Awakening: nDst = 53, dwTotalProb = 15099946182021/ 4/11  20:30:18  Awakening: nDst = 75, dwTotalProb = 1509994618
after checking all the code one by one. and editing some fail copy past.
and rebuil project neuz i get error of this.




Quote:

Quote:

#ifdef __ANARCHY_SYSTEMCWndAnarchySkill::CWndAnarchySkill(){ m_nGold = 0; m_nCurrentPage = 0; m_nMaxPage = 0; m_fGaugeRate = 0; m_nSmeltWidth = -1; ZeroMemory(m_pWndRect, sizeof m_pWndRect); ZeroMemory(m_pTexture, sizeof m_pTexture); ZeroMemory(m_pWndButton, sizeof m_pWndButton); ZeroMemory(m_pWndStaticName, sizeof m_pWndStaticName); ZeroMemory(m_pWndStaticPrice, sizeof m_pWndStaticPrice);}CWndAnarchySkill::~CWndAnarchySkill(){ ZeroMemory(m_pWndRect, sizeof m_pWndRect); ZeroMemory(m_pTexture, sizeof m_pTexture); ZeroMemory(m_pWndButton, sizeof m_pWndButton); ZeroMemory(m_pWndStaticName, sizeof m_pWndStaticName); ZeroMemory(m_pWndStaticPrice, sizeof m_pWndStaticPrice);}BOOL CWndAnarchySkill::Initialize(CWndBase* pWndParent, DWORD nType){ return CWndNeuz::InitDialog(g_Neuz.GetSafeHwnd(), APP_ANARCHY_SKILL, 0, CPoint(0, 0), pWndParent);}BOOL CWndAnarchySkill::OnChildNotify(UINT message, UINT nID, LRESULT* pLResult){ switch (nID) { case WIDC_BUTTON: // first buff case WIDC_BUTTON3: // second buff case WIDC_BUTTON4: // third buff case WIDC_BUTTON5: // fourth buff { int id = m_nCurrentPage * 4; if (nID == WIDC_BUTTON3) id += 1; else if (nID == WIDC_BUTTON4) id += 2; else if (nID == WIDC_BUTTON5) id += 3; auto pBuff = &prj.m_vAnarchyBuffProp.at(id); int nAnarchyCoin = g_pPlayer->GetItemNum(II_SYS_SYS_SCR_PERIN); int nCost = pBuff->nPerin; if (nCost > nAnarchyCoin) { g_WndMng.PutString("You don't have enough perin to do anarchy."); return FALSE; } SAFE_DELETE(g_WndMng.m_pWndAnarchySkillConfirm); g_WndMng.m_pWndAnarchySkillConfirm = new CWndAnarchySkillConfirm(id); g_WndMng.m_pWndAnarchySkillConfirm->m_nMode = 0; g_WndMng.m_pWndAnarchySkillConfirm->Initialize(); } break; case WIDC_BUTTON2: // prev { if (m_nCurrentPage == 0) SetCurrentPage(m_nMaxPage); else SetCurrentPage(--m_nCurrentPage); } break; case WIDC_BUTTON1: // next { if (m_nCurrentPage == m_nMaxPage) SetCurrentPage(0); else SetCurrentPage(++m_nCurrentPage); } break; } return CWndNeuz::OnChildNotify(message, nID, pLResult);}void CWndAnarchySkill::OnDraw(C2DRender* p2DRender){ for (int i = 0 + m_nCurrentPage * 4; i < 4 + m_nCurrentPage * 4 && i < (int)prj.m_vAnarchyBuffProp.size(); ++i) { m_pTexture[i]->Render(p2DRender, m_pWndRect[i % 4].TopLeft(), CPoint(32, 32)); } if (m_nMaxPage > 0) { int xPos = 0; for (int i = 0; i < m_nMaxPage + 1; i++) { CString edit; edit.Format("%d ", i + 1); if (i == m_nCurrentPage) p2DRender->TextOut(160 + xPos, 185, edit, 0xff0000ff); else p2DRender->TextOut(160 + xPos, 190, edit, 0xff000000); xPos += 15; } }}HRESULT CWndAnarchySkill::RestoreDeviceObjects(){ CWndBase::RestoreDeviceObjects(); m_nSmeltWidth = -1; return S_OK;}HRESULT CWndAnarchySkill::InvalidateDeviceObjects(){ CWndBase::InvalidateDeviceObjects(); return S_OK;}HRESULT CWndAnarchySkill::DeleteDeviceObjects(){ CWndBase::DeleteDeviceObjects(); return InvalidateDeviceObjects();}void CWndAnarchySkill::OnInitialUpdate(){ CWndNeuz::OnInitialUpdate(); m_pWndStaticIcon[0] = (CWndStatic*)GetDlgItem(WIDC_STATIC11); m_pWndStaticIcon[1] = (CWndStatic*)GetDlgItem(WIDC_STATIC111); m_pWndStaticIcon[2] = (CWndStatic*)GetDlgItem(WIDC_STATIC1111); m_pWndStaticIcon[3] = (CWndStatic*)GetDlgItem(WIDC_STATIC11111); m_pWndRect[0] = GetDlgItem(WIDC_STATIC11)->GetWndRect(); m_pWndRect[1] = GetDlgItem(WIDC_STATIC111)->GetWndRect(); m_pWndRect[2] = GetDlgItem(WIDC_STATIC1111)->GetWndRect(); m_pWndRect[3] = GetDlgItem(WIDC_STATIC11111)->GetWndRect(); m_pWndButton[0] = (CWndButton*)GetDlgItem(WIDC_BUTTON); m_pWndButton[1] = (CWndButton*)GetDlgItem(WIDC_BUTTON3); m_pWndButton[2] = (CWndButton*)GetDlgItem(WIDC_BUTTON4); m_pWndButton[3] = (CWndButton*)GetDlgItem(WIDC_BUTTON5); m_pWndStaticName[0] = (CWndStatic*)GetDlgItem(WIDC_STATIC); m_pWndStaticName[1] = (CWndStatic*)GetDlgItem(WIDC_STATIC2); m_pWndStaticName[2] = (CWndStatic*)GetDlgItem(WIDC_STATIC4); m_pWndStaticName[3] = (CWndStatic*)GetDlgItem(WIDC_STATIC6); m_pWndStaticPrice[0] = (CWndStatic*)GetDlgItem(WIDC_STATIC1); m_pWndStaticPrice[1] = (CWndStatic*)GetDlgItem(WIDC_STATIC3); m_pWndStaticPrice[2] = (CWndStatic*)GetDlgItem(WIDC_STATIC5); m_pWndStaticPrice[3] = (CWndStatic*)GetDlgItem(WIDC_STATIC7)

upon reading somethread and researching internet. it said that WIDC_BUTTON are not in any code? or i need to define WIDC_BUTTON?

can any one help me about anarchy system to install properly. thanks

- - - Updated - - -

update
Quote:

021/ 4/11 20:30:18 Awakening: nDst = 1, dwTotalProb = 15099946182021/ 4/11 20:30:18 Awakening: nDst = 2, dwTotalProb = 15099946182021/ 4/11 20:30:18 Awakening: nDst = 3, dwTotalProb = 15099946182021/ 4/11 20:30:18 Awakening: nDst = 4, dwTotalProb = 15099946182021/ 4/11 20:30:18 Awakening: nDst = 9, dwTotalProb = 15099946182021/ 4/11 20:30:18 Awakening: nDst = 77, dwTotalProb = 15099946182021/ 4/11 20:30:18 Awakening: nDst = 11, dwTotalProb = 15099946182021/ 4/11 20:30:18 Awakening: nDst = 24, dwTotalProb = 15099946182021/ 4/11 20:30:18 Awakening: nDst = 79, dwTotalProb = 15099946182021/ 4/11 20:30:18 Awakening: nDst = 66, dwTotalProb = 5235501822021/ 4/11 20:30:18 Awakening: nDst = 52, dwTotalProb = 15099946182021/ 4/11 20:30:18 Awakening: nDst = 53, dwTotalProb = 15099946182021/ 4/11 20:30:18 Awakening: nDst = 75, dwTotalProb = 1509994618
error fix. though this error came from anarchy system

anarchy system still ave error please help me

Anyone have WebPanel For Ep6 S3?

$
0
0
anyone have download link for any control panel for mu online out there that i can use for vps? thanks folks. and i hope it comes with an installation guide and php version requirement. have a great day

the misplacement of characters and weapons in shops after off-line stalling

$
0
0
It's normal to check the equipment information of other players, but when you check the equipment information of characters in the offline store, weapons and shields are all in the position of shields. Does anyone know what the problem is

__MAP_TORCH_SYSTEM does not work

$
0
0
__MAP_TORCH_SYSTEM I added it to my server and I don't see it.Will I unlock a mini-map in a dungeon or do I need to add anything?

Need website Gunz

$
0
0
Hello friends, I need a gunz web site, I searched on some topics but all links are broken.
i'm newbie

Craft X-Pasa

$
0
0
I tried 20 times but it always comes out you have failed in crafting the item how can I solve
Attached Images
Viewing all 29591 articles
Browse latest View live