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

[KalOnline] Looking for a variety of skills for a server.

$
0
0
Server Name: KalArena KalOnline Server
Rates: Low
Looking for: Map Editor, PHP Coder, Web Designer, Armor/Weapon Designer, C++ Coder, SQL Programmer/Developer

I am a long time kalonline player, many time guild leader/alliance leader, have lead over 50+ guilds in over 10 years. I am a php/coldfusion/sql server/oracle programmer.

If you want to see examples of my own releases, here they are:

http://forum.ragezone.com/f315/store...-item-1137248/
http://forum.ragezone.com/f554/guide...r-tips-978581/
http://forum.ragezone.com/f554/succe...larity-975779/
http://forum.ragezone.com/f554/kalon...ugging-975777/
http://forum.ragezone.com/f554/tutor...cklist-975775/
http://forum.ragezone.com/f554/datab...-101-a-903955/
http://forum.ragezone.com/f315/setup...change-903854/
http://forum.ragezone.com/f315/usefu...ebsite-903849/
http://forum.ragezone.com/f315/secur...rocess-903756/
http://forum.ragezone.com/f554/tutor...layers-607727/
http://forum.ragezone.com/f315/store...layers-543591/
http://forum.ragezone.com/f315/relea...-tasks-505618/
http://forum.ragezone.com/f315/relea...ng-php-346078/

I want to make a low rate server, but with some unique twists, to make it more challenging.

To help process any people wanting to join my team, I created this google form here.

https://goo.gl/forms/TCLakARc26CBQ6Tv1

Or if that doesn't work.

https://docs.google.com/forms/d/e/1F...rm?usp=sf_link

I can be reached via skype at crosenblum6729 or via facebook here at: https://www.facebook.com/groups/kalonlinefriends/

How can i make GM enable to use FJ or any skill in any maps

$
0
0
do anyone know how to make GM can use any skills in any maps but donor cant? my donor gm level is level 1. i wanted to make myself able to use flash jump and skill in any event map

MuNoCry | Season 6 ep3 | 1 Rebirth | Exp: x50 - Master Exp: x10- | Drop: 40% |

$
0
0
OFFICIAL OPENING: 26/08

+400 Online

Server Info:

Season 6 Episode 3
Exp: x50
Master Exp: x10
Drop: 40%
1 Rebirth

Store per Jewel
Offatack System
AutoAttack System
AutoPick System

Website:
www.munocry.com


Facebook Page:
https://www.facebook.com/munocry/

Skype Support:
bbenhame

SERVER JUST STARTED!!!

Check Video:


https://www.facebook.com/munocry/vid...2173102691181/



Server Features:

* PvP Tournaments
* New Rewards for Castle Siegue winners
* HuntSystem
* Store Jewels
* Offatack system
* Drops and Invasion in "H"
* PvP OK

Best CMS?

$
0
0
Hi, I'm an Italian user.
I have tried many CMS, but I have not found the "right."
In your opinion what is the best currently on the road?

[Request] MAP California_V2 Upload

$
0
0
as the title says does anyone have the California_V2 i mean the Big one not Caliwood would be very nice if someone can upload it due i plan on using it for my new Map / Server Idea due i miss the Survival aspect of the game i want to Bring it back on a New/old Map wich i loved but sadly got cut in a piece of shit

some one can hook dll to the main please

$
0
0
i dont understand how to hook dll to main after i watch some videos of ollydbg and i try stud pe and its didnt work can some one hook for me please

https://mega.nz/#!8cFlCJjD!q5w9jHpkqeeO3efmoU6tntyMZuAfNcl5bJBf8YEyNn8

Script Buying SQL SCRIPT or Software to REGENERATE SERIAL ITEMS

$
0
0
I buy a SQL SCRIPT or Software to REGENERATE SERIAL of all items in a DB Mu Online.

I use DB of MuEmu Season 8
(download and use Mu Emu S8 or use xteam is same DB)

The tool need this features:
-Regenerate all items serial stored in Inventory chars and Warehouse.
-Search dupe items and regenerate serial stored in Inventory chars and Warehouse.
-Search all dupe items and show

I pay with Paypal only

I need an application that does the following:
Example Tool from IGCN:






Example how to work system (procedure)
Code:

USE [MuOnline]
GO
/****** Object:  StoredProcedure [dbo].[WZ_GetItemSerial]    Script Date: 27/08/2017 19:57:20 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO


--
-- Definition for stored procedure WZ_GetItemSerial :
--

ALTER procedure [dbo].[WZ_GetItemSerial]
as
BEGIN       
        DECLARE @ItemSerial        int
        set nocount on
        begin transaction

                update GameServerInfo set @ItemSerial = ItemCount = ItemCount+1
                       
                if ( @@error  <> 0 )
                begin       
                        rollback transaction
                        select -1
                end
                else
                begin
                        commit transaction                               
                        select @ItemSerial
                end
END

[Stored Procedure] Animal Upgrade

$
0
0
What this does, once run, is based on level and egg grade.

If your level is between 11 and 30 and eggrade is less than 11 then your egg is upgraded to 11 aka baby animal

If your level is between 29 and 50 and eggrade is less than 21 then your egg is upgraded to 21 aka young adult

If your level is between 49 and 70 and eggrade is less than 31 then your egg is upgraded to 31 aka mature adult

If your level is between 69 and 90 and eggrade is less than 41 then your egg is upgraded to 41 aka full adult

Now this is easily adjustable, change the procedure to fit your needs.

USE [kal_db]
GO
/****** Object: StoredProcedure [dbo].[AnimalUpgrade] ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[AnimalUpgrade]
AS
BEGIN

declare @pid int
declare @IID int
declare @level int
declare @Index int
declare @MaxEnd int

DECLARE player_eggs CURSOR FOR
select a.PID,a.Level, b.IID, b.[Index], b.MaxEnd
from Player a
inner join Item b on b.PID = a.PID
where b.[Index] = 339
or b.[Index] = 337
or b.[Index] = 338

OPEN player_eggs
FETCH NEXT FROM player_eggs INTO @pid, @level, @IID, @Index, @MaxEnd

WHILE @@FETCH_STATUS = 0
BEGIN
if @level > 11 and @level < 30 and @MaxEnd < 11
Update Item
Set MaxEnd = 11
where PID = @pid
and IID = @IID

if @level > 29 and @level < 50 and @MaxEnd < 21
Update Item
Set MaxEnd = 21
where PID = @pid
and IID = @IID

if @level > 49 and @level < 70 and @MaxEnd < 31
Update Item
Set MaxEnd = 31
where PID = @pid
and IID = @IID

if @level > 69 and @level < 90 and @MaxEnd < 41
Update Item
Set MaxEnd = 41
where PID = @pid
and IID = @IID
END

close player_eggs
deallocate player_eggs

END

Need ADvice

$
0
0
is Centos 6 support all cabal ep8 repack?:ott1:

hey id really like some help

$
0
0
hello everybody, im really interested in learning how to edit maplestory clients. to be more descriptive, id like to learn how to make the client no-delay and down-jump anywhere/ teleport anywhere. unlimited, no delay skills. fast faces. id really appreciate the help! thanks a lot <3 :ott:

im focused on v83 clients, just saying. the programs i have right now is ollydbg and thats it. idk how to really use these stuff and its like. im lost. please halp... thanks.

Hack Checking Option

$
0
0
from the tittle, can we trust on this? did user really using hack that log in db?

Code:

UseHackcheckByTimeScope=0
UseCheckShopHack=0
UseCheckWarpHack=0
UseCheckWareHouseHack=0
UseCheckSkillCoolTimeHack=0
UseCheckDistanceSkillHack=0
UseCheckDeadStatActive=0
UseCheckDMZArea=0
UseCheckInventoryHack=0
UseCheckUserAttack=0
UseCheckDeadStatActive=0
ActiveDeadStatCount=30
SpeedHackCheckTime=10000
MaxAttackHackTime=300000
CheckSkillTimeHackScope=60000

Help My DataBase Hacked

$
0
0
How To Block Hackers From Connect With My DataBase

make seiferXIII web panel

$
0
0
how to configure web panel thas in windows server 2012 r2??
any idie??

Client Icon?

$
0
0
Okay so I highly highly doubt anyone's just going to give me the answer on how to do it, but why not give it a try?

So obviously I've Googled and Youtube'd on how to do this but so far all I've gotten was "Use a shortcut" and "use Resource Hacker ezpz!"

Here are my ResHack results:
Spoiler:

BEFORE changing the icon:


AFTER changing the icon:

Not sure why it added a new row at the top (the 48x48 thing), but it does for some reason.

When saving it, everything seems fine but when I run the client I get spammed with this message about 4 times:



So if anyone can help me out that would be great and appreciated thanks!

[REQUEST] BETA v36 SWF's for Caching VB6

$
0
0
Hello guys, does someone here in the forum still have the BETA v36 SWF's + client + gamedata + c_images ?
I search a lot on forums, but can't find... If someone have, please, upload for me :):

I'm trying to improve my C# skills, would like to re-create this version :)

Howto open this map

help about admin commands and admin -

$
0
0
I do not know how to give admin commands and how to give myself admin
plase help

HackShield Error

$
0
0
Someone help me out here? As far as I know this code is about License. I also got Error Code #3 after #100



Tia!

[ask] Cabal repack or server file with GL replacement

$
0
0
Hello all,
Could someone may give me link for cabal repack or server file with Gladiator class replacement ?
Thanks

[Help] How To Decrypt MiniA.Exe .

$
0
0
Hello all. I want to ask. how do we protect our Minia.Exe so it can not be read By Hex Editor. Like a String so as not to see what matters to us. I hope there is someone who understands thank you :junglejane:
Hello all. I want to ask. how do we protect our Minia.Exe so it can not be read By Hex Editor. Like a String so as not to see what matters to us. I hope there is someone who understands thank you
Viewing all 25323 articles
Browse latest View live


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