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

New file in GameRes.unity3d

$
0
0
Goodnight!

Does anyone know how to include a new file other than those already listed within GameRes.unity3d?

[Share] SQL Queries to monitor In-Game Statistics

$
0
0
A simple share for those owners that are not familiar with SQL Query yet.
I know this is just a simple thing, would just like to help the community.

All queries below are Juver based database.

Feel free to comment if you have any request regarding sql query.

Code:

-- Get Total Online Players
SELECT count(*)
FROM RanGame1.dbo.ChaInfo
WHERE ChaOnline = 1

-- List all online players players, sorted by level and character name
SELECT ChaName, ChaLevel
FROM RanGame1.dbo.ChaInfo
WHERE ChaOnline = 1
ORDER BY ChaLevel, ChaName

-- Check Top 100 Characters sorted by Activity Points
SELECT TOP 100 ChaName, ChaActivityPoint
FROM RanGame1.dbo.ChaInfo
ORDER BY ChaActivityPoint desc

-- Check Top 100 Characters sorted by Contribution Points
SELECT TOP 100 ChaName, ChaContributionPoint
FROM RanGame1.dbo.ChaInfo
ORDER BY ChaContributionPoint desc

-- Check Top 100 Characters sorted by  Gold
SELECT TOP 100 ChaName, ChaMoney
FROM RanGame1.dbo.ChaInfo
ORDER BY ChaMoney desc

-- Check Top 100 Character sorted by PK Score
SELECT TOP 100 ChaName, ChaPKScore
FROM RanGame1.dbo.ChaInfo
ORDER BY ChaPKScore desc

-- Check Top 100 Character sorted by PK Death
SELECT TOP 100 ChaName, ChaPKDeath
FROM RanGame1.dbo.ChaInfo
ORDER BY ChaPKDeath desc

-- Check Top 100 Character sorted by CW Score
SELECT TOP 100 ChaName, ChaCWKill
FROM RanGame1.dbo.ChaInfo
ORDER BY ChaCWKill desc

-- Check Top 100 Character sorted by CW Death
SELECT TOP 100 ChaName, ChaCWDeath
FROM RanGame1.dbo.ChaInfo
ORDER BY ChaCWDeath desc

Please Help Me

how

$
0
0
I want to create a server for 2016 files, and I have TeamNG files. I want to know how to do it and I want a simple explanation.

[help]Zombie packet loss, I need help

[Help] IGCN Season 6 Ep3 - How to enable Medusa event?

$
0
0
Hello Lads,

I'am struggling with a IGCN Season 6 Ep3 Mu server files from that thread:

Code:

http://forum.ragezone.com/f197/release-igcn-season-6-ep-1151403/
So server is up and running, base configured, IP set in files.

I'am wondering, where are the files which include medusa event enable and time config?

For example, if we would like to enable a Golden dragon invasion i can check

1. GoldenInvasion.ini

Spoiler:
Quote:

;############################################################;# -- X6 MUONLINE SERVER EMULATOR
;# -- www.igcn.mu
;# -- www.muemu.pl
;# -- (C) 2017 IGC-Network | MUEMU (R)
;# ----------------------------------------------------------
;# -- File is a part of MUEMU MuOnline Server files.;############################################################;
; Golden Invasions System can operate in two modes:
; Mode 1: EventsManager.dat: Golden Monsters spawned by the system will remain on map until they will be killed
; Mode 2: Below configuration: Golden Monster if not killed within RegenTime will respawn to different location
;
; NOTE: If both modes are enabled at the same time then mode 2 is ignored[GoldenInvasion]
;-------------------------------------------------------------------------------------------------------------;-- Enables Golden Invasion system (based on settings below)
;-------------------------------------------------------------------------------------------------------------EnableInvasion = 1[MonsterRegenTime]
;-------------------------------------------------------------------------------------------------------------;-- Time after which the Golden Goblin will respawn (if not killed) - Monster Index 78, minutes
;-------------------------------------------------------------------------------------------------------------GoldenGoblin = 60
;-------------------------------------------------------------------------------------------------------------;-- Time after which the Golden Titan will respawn (if not killed) - Monster Index 53, minutes
;-------------------------------------------------------------------------------------------------------------GoldenTitan = 60
;-------------------------------------------------------------------------------------------------------------;-- Time after which the Golden Derkon will respawn (if not killed) - Monster Index 79, minutes
;-------------------------------------------------------------------------------------------------------------GoldenDerkon = 60
;-------------------------------------------------------------------------------------------------------------;-- Time after which the Golden Lizard King will respawn (if not killed) - Monster Index 80, minutes;-------------------------------------------------------------------------------------------------------------GoldenLizardKing = 60
;-------------------------------------------------------------------------------------------------------------;-- Time after which the Golden Tantalos will respawn (if not killed) - Monster Index 82, minutes
;-------------------------------------------------------------------------------------------------------------GoldenTantalos = 60
;-------------------------------------------------------------------------------------------------------------;-- Time after which the Golden Rabbit will respawn (if not killed) - Monster Index 502, minutes
;-------------------------------------------------------------------------------------------------------------GoldenRabbit = 60
;-------------------------------------------------------------------------------------------------------------;-- Time after which the Golden Dark Knight will respawn (if not killed) - Monster Index 493, minutes
;-------------------------------------------------------------------------------------------------------------GoldenDarkKnight = 60
;-------------------------------------------------------------------------------------------------------------;-- Time after which the Golden Devil will respawn (if not killed) - Monster Index 494, minutes
;-------------------------------------------------------------------------------------------------------------GoldenDevil = 60
;-------------------------------------------------------------------------------------------------------------;-- Time after which the Golden Stone Golem will respawn (if not killed) - Monster Index 495, minutes
;-------------------------------------------------------------------------------------------------------------GoldenStoneGolem = 60
;-------------------------------------------------------------------------------------------------------------;-- Time after which the Golden Crust will respawn (if not killed) - Monster Index 496, minutes
;-------------------------------------------------------------------------------------------------------------GoldenCrust = 60
;-------------------------------------------------------------------------------------------------------------;-- Time after which the Golden Satyros will respawn (if not killed) - Monster Index 497, minutes;-------------------------------------------------------------------------------------------------------------GoldenSatyros = 60
;-------------------------------------------------------------------------------------------------------------;-- Time after which the Golden Twin Tail will respawn (if not killed) - Monster Index 498, minutes;-------------------------------------------------------------------------------------------------------------GoldenTwinTail = 60
;-------------------------------------------------------------------------------------------------------------;-- Time after which the Golden Iron Knight will respawn (if not killed) - Monster Index 499, minutes
;-------------------------------------------------------------------------------------------------------------GoldenIronKnight = 60
;-------------------------------------------------------------------------------------------------------------;-- Time after which the Golden Napin will respawn (if not killed) - Monster Index 500, minutes
;-------------------------------------------------------------------------------------------------------------GoldenNeipin = 60
;-------------------------------------------------------------------------------------------------------------;-- Time after which the Great Golden Dragon will respawn (if not killed) - Monster Index 501, minutes
;-------------------------------------------------------------------------------------------------------------GoldenGreatDragon = 60



2. EventsManager.dat (part of it)

Spoiler:
Quote:

//############################################################//# -- INTERNATIONAL GAMING CENTER NETWORK//# -- www.igc-network.com//# -- (C) 2010-2015 IGC-Network (R)//# ---------------------------------------------------------
//# -- File is a part of IGCN Group MuOnline Server files.
//############################################################// ==========================
// Events:
// 0 = Red Dragon Invasion
// 1 = Skeleton King Invasion
// 2 = Golden Invasion
// 3 = White Wizard Invasion
// 4 = Santa Event

//Red Dragon Invasion -------
// ==========================
// Event Hour Min
// ==========================
// --------------------------
0
// DO NOT REMOVE THIS ZERO
0 1 0
0 3 0
0 13 0
0 15 0
0 23 0

// Skeleton King ------------
// ==========================
// Event Hour Min
// ==========================
// --------------------------
1 8 0
1 12 0
1 20 0




I could add a Medusa event into a EventManager file but, what is medusa event number?

I would be appreciated if somebody give me a hint, or tell my that those files are incomplete..

how to enable dungeon on RCB1

$
0
0
I want to make this kind of setup, after kill the mia and lucian if u go out in rcb1, the two boss are respawn. how many gentime i put in leveleditor.?

Can someone share 50,60,70,80 cap files ??

$
0
0
Guys ı want to open a server but ı cant find any server files. Almost all of them are deleted if you have can u share with me ???

Cores

$
0
0
Force core medium not working on shadowtitanium, already changed the grade of the item but still not working.

- - - Updated - - -

edit: I found that it reads force core low instead of medium but I did change the grade to medium which is 4

Sign of Lord 99/255

$
0
0
Hi I know the ID of Sign of Lord but don't know how to create the items stack like 99 or 255 ID. if even possible.. thanks

tables issue, wiht "combo" items ? ! xd

$
0
0
ok soo guys first of all its a table issue that i cant understand how i messed it up , i did some changes in items tables, skill and more ... after patching the source and client got everything up and working, and now im checking some items, and they arent working. exemple the angle wings and halo egg , kid clock, vip box ( the one that gives apssives) popo box ... etc always when i try open them or use it says "item not found" in system chat :?:

well im sure the issue is in one of those tables

i jsut dont know wich table lmao xdd , well im here to ask for help to how to fix this " item not found" when trying to open theses items or use, i would even pay for the help, anything reply me here or call me here or at discord : !FoRest98#8888
Every Type of Help is welcome !! <3 :thumbup:

Launcher ERROR : Cannot initialize this file

$
0
0
Log start : Sun May 02 13:21:53 2021Current Directory : C:\Users\.......\Escritorio\.........\Cliente13:21:53:849 [APP] OS version : (Build 9200)13:21:53:849 [APP] Window created successfully.13:21:56:036 [ZUpdate] Create.13:21:56:036 [ZFileTransfer] Create.13:21:56:036 [ZFileTransfer] Create successfully complete.13:21:56:036 [ZFileTransfer] Open connection.13:21:56:036 [ZFileTransfer] Open connection successfully complete.13:21:56:036 [ZFileTransfer] Change directory.13:21:56:036 [ZFileTransfer] Change directory successfully complete.13:21:56:036 [ZUpdate] Create successfully compete.13:21:56:036 [APP] Download patch info file13:21:56:036 [ZUpdate] Start update.13:21:56:036 [ZFileTransfer] Download file : ./patch.xml to ./patch.xml13:21:56:427 [ZFileTransfer] Download successfully complete.13:21:56:427 [ZUpdate] Get update info.13:21:56:427 [ZUpdate] Get update info successfully complete.13:21:56:427 [ZUpdate] Check valid from patch list.13:21:57:708 [ZUpdate:GetCRC] ERROR : Cannot initialize this file : './interface.mrs'13:21:57:708 [ZUpdate:GetCRC] ERROR : Cannot initialize this file : './sfx.mrs'13:21:57:724 [ZUpdate:GetCRC] ERROR : Cannot initialize this file : './system.mrs'13:21:57:724 [ZUpdate:GetCRC] ERROR : Cannot initialize this file : './Model/man.mrs'13:21:57:755 [ZUpdate:GetCRC] ERROR : Cannot initialize this file : './Model/woman.mrs'13:21:57:755 [ZUpdate] Check valid from patch list successfully complete.13:21:57:755 [ZUpdate] + Total patch file count : 013:21:57:755 [ZUpdate] + Total patch file size : 0 bytes13:22:02:620 [ZUpdate] Destroy.13:22:02:620 [ZFileTransfer] Destroy.13:22:02:620 [ZFileTransfer] Close connection.13:22:02:620 [ZFileTransfer] Close connection successfully complete.13:22:02:620 [ZFileTransfer] Destroy successfly complete.13:22:02:620 [ZUpdate] Destroy successfully complete.



this is the patch log notepad, How can I solve this, it does not patch any file, it leaves it as is without patching them.

Looking for server files Starfall

$
0
0
Hello here i have a big project for a one server of Jade Dynasty.

Few years ago i have owned a server in my computer for jd.

Now i want to create a new server based for the pvp and pve.

I have so many idea but i'm so confused for create a new server. I have forget alot of think for doing it but its ok.

First step i will need a good server files 16 classes if someone have that for me its perfect. Thank you

[HELP PLEASE] Zombie Model DIstorted

creating a server..

$
0
0
is there a chance to create a local server for myself.. while i am using windows 10 ?

How to remove the encryption in gunz source or change

$
0
0
Does anyone know how to remove encryption from the source or change it. How to change them or how to make them.

Chat error

$
0
0
who has a chat error and cannot compile their exe file I will tell you how to fix hex

Quote:

00 00 00 00 E2 56 1F 96 00 00 00 00 16 4E 4C 7500 00 00 00 35 96 25 84 00 00 00 00 9B 51 E2 5600 00 00 00 6C 51 1A 4F 00 00 00 00 C6 5B ED 8B00 00 00 00 1F 96 0D 4F 00 00 00 00 44 96 D1 8F00 00 00 00 48 CB D6 00 00 00 00 00 2E
I replaced with this

Quote:

00 00 00 00 20 04 35 04 39 04 00 00 1C 04 38 0440 04 00 00 1F 04 3E 04 45 04 00 00 1B 04 35 0433 04 00 00 13 04 38 04 3B 04 00 00 1F 04 40 0438 04 00 00 1E 04 42 04 40 04 00 00 20 04 4F 0434 04 00 00 48 DB D6 00 00 00 00 00 2E

rewrote values ​​in resources\interfaces.pck\1gameui.stf
441 "..."
442 "..."
443 "..."
444 "..."
445 "..."
446 "..."
447 "..."
448 "..."
449 "..."
450 "..."

you can compile your exe file by first changing

SMElementClient\DlgChat.cpp

Quote:

if( ACString(str) == _T("附近") ) m_mapSpeakModeAsPos.insert( abase::hash_map<int,ChannelType>::value_type( i , CHANNEL_NEAR ) ); else if( ACString(str) == _T("队伍") ) m_mapSpeakModeAsPos.insert( abase::hash_map<int,ChannelType>::value_type( i , CHANNEL_TEAM ) ); else if( ACString(str) == _T("密语") ) m_mapSpeakModeAsPos.insert( abase::hash_map<int,ChannelType>::value_type( i , CHANNEL_WISPER)); else if( ACString(str) == _T("公会") ) m_mapSpeakModeAsPos.insert( abase::hash_map<int,ChannelType>::value_type( i , CHANNEL_GUILD ) ); else if( ACString(str) == _T("军团") ) m_mapSpeakModeAsPos.insert( abase::hash_map<int,ChannelType>::value_type( i , CHANNEL_CORPS ) ); else if( ACString(str) == _T("阵营") ) m_mapSpeakModeAsPos.insert( abase::hash_map<int,ChannelType>::value_type( i , CHANNEL_CAMP ) ); else if( ACString(str) == _T("世界") ) m_mapSpeakModeAsPos.insert( abase::hash_map<int,ChannelType>::value_type( i , CHANNEL_WORLD ) ); else if( ACString(str) == _T("团队") ) m_mapSpeakModeAsPos.insert( abase::hash_map<int,ChannelType>::value_type( i , CHANNEL_RAID ) ); else if( ACString(str) == _T("同服") ) m_mapSpeakModeAsPos.insert( abase::hash_map<int,ChannelType>::value_type( i , CHANNEL_SERVER ) );
according to their region

Min HP/MP for each class, and gains on job advancements?

$
0
0
Hello, I am curious on where I could find these coded. I am using heavenms source to toy around and noticed that when I advanced to Spearman, I got extra HP instead of the extra MP I should get. This could affect other classes and HP Washing seeing as there is a Min MP for each class afaik.

I would like to know where all these values are coded. I am assuming they are in the source and not in the WZ files, but at least by checking the scripts of NPCs that job advance you, I couldnt find about the HP/MP gains there.

Please help me to setup my talisman :

$
0
0
:*: PLEASE HELP ME MY UBUNTU I CANT RELATE :< Thanks in advance <3:ott::ott:

Change monster size?

Viewing all 24362 articles
Browse latest View live


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