Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Release] Devolution (Dodian w/ Silab) No MySQL! V7 Full PKing w/ Magic.

Newbie Spellweaver
Joined
Oct 5, 2007
Messages
50
Reaction score
0
Uhhh wheres all the shops?? Btw nice server im going to use,But im going to try make it like rs add stuff to vorrck eg..shops..and that
 
Junior Spellweaver
Joined
Nov 18, 2007
Messages
173
Reaction score
5
Where do you buy the Silab Items (god sword etc)? And what itemID have they?
 
Junior Spellweaver
Joined
May 14, 2007
Messages
123
Reaction score
0
not that good, not much to do, get bored after an hour
 
Newbie Spellweaver
Joined
Nov 5, 2007
Messages
29
Reaction score
0
How do you make someone admin on this server?
 
Junior Spellweaver
Joined
May 14, 2007
Messages
123
Reaction score
0
go into characters > open characters notepad file ( character you want to make admin) > then find character rights then make it 2 or 3 > save and close file > compile > run server


Then you should be admin
 
Newbie Spellweaver
Joined
Nov 5, 2007
Messages
29
Reaction score
0
ok, how you set al your skills in to 100?

I have search for it but everything doesn't work
 
Junior Spellweaver
Joined
May 14, 2007
Messages
123
Reaction score
0
you mean get all skills to 99, there are various commands like ::pure , ::maxie

Just depends on the server,

Or you could open server folder > Character > go on the character you want > scroll down untill you find something like this

Code:
[SKILLS]
character-skill = 0	1	50
character-skill = 1	1	0
character-skill = 2	1	50
character-skill = 3	8	1255
character-skill = 4	1	0
character-skill = 5	1	0
character-skill = 6	1	20
character-skill = 7	1	0
character-skill = 8	1	0
character-skill = 9	1	0
character-skill = 10	1	0
character-skill = 11	1	0
character-skill = 12	1	0
character-skill = 13	1	0
character-skill = 14	1	0
character-skill = 15	1	0
character-skill = 16	1	0
character-skill = 17	5	500
character-skill = 18	1	0
character-skill = 19	1	0
character-skill = 20	1	0
character-skill = 21	1	0
character-skill = 22	1	0
character-skill = 23	1	0
character-skill = 24	1	0

Then change all the "1's" to 99 and all the zeros to say 14000000

save> Compile > run server

Should work


Regards

lord
 
Newbie Spellweaver
Joined
Nov 5, 2007
Messages
29
Reaction score
0
you mean get all skills to 99, there are various commands like ::pure , ::maxie

Just depends on the server,

Or you could open server folder > Character > go on the character you want > scroll down untill you find something like this

Code:
[SKILLS]
character-skill = 0    1    50
character-skill = 1    1    0
character-skill = 2    1    50
character-skill = 3    8    1255
character-skill = 4    1    0
character-skill = 5    1    0
character-skill = 6    1    20
character-skill = 7    1    0
character-skill = 8    1    0
character-skill = 9    1    0
character-skill = 10    1    0
character-skill = 11    1    0
character-skill = 12    1    0
character-skill = 13    1    0
character-skill = 14    1    0
character-skill = 15    1    0
character-skill = 16    1    0
character-skill = 17    5    500
character-skill = 18    1    0
character-skill = 19    1    0
character-skill = 20    1    0
character-skill = 21    1    0
character-skill = 22    1    0
character-skill = 23    1    0
character-skill = 24    1    0

Then change all the "1's" to 99 and all the zeros to say 14000000

save> Compile > run server

Should work


Regards

lord




Ok, but what do you mean with "compile" ik have the best jdk , but it doesn't work.
 
Junior Spellweaver
Joined
May 14, 2007
Messages
123
Reaction score
0
ok, here a new compiler,

NOTE: a compiler is a programme in your server that adjusts the server to changes you have made.

Open your server File > find compile or compiler > right click > click edit > delete everything inside and add this.

Code:
@echo off
:main-menu
cls
title LX-Compiler
echo ------------------------------------------------------------------------------
echo   Welcome to the LX-Compiler (created by toonshorty)
echo   This compiler supports java 1.6.0_01 and above
echo   please select an option from the list below
echo ------------------------------------------------------------------------------
echo   c  -  Compile Server
echo   r  -  Run Server
echo   i  -  View Compiler Info
echo   h  -  List of helpful sites
echo ------------------------------------------------------------------------------
set /p o= Option:
if %o%==C goto compile else goto error
if %o%==c goto compile
if %o%==R goto run
if %o%==r goto run
if %o%==I goto info
if %o%==i goto info
if %o%==H goto help
if %o%==h goto help
cls

:error
echo The option you selected was not valid, please select on option from the list
pause
goto main-menu

:compile
cls
IF EXIST "%programfiles%\JAVA\JDK1.6.0_01\BIN" (goto com1)
IF EXIST "%programfiles%\JAVA\JDK1.6.0_02\BIN" (goto com2)
IF EXIST "%programfiles%\JAVA\JDK1.6.0_03\BIN" (goto com3)
IF EXIST "%programfiles%\JAVA\JDK1.6.0_04\BIN" (goto com4)

:com1
cls
title Compiling...
echo Found: Java JDK 1.6.0_01
echo Compiling Server, Please wait...
"C:\Program Files\Java\jdk1.6.0_01\bin\javac.exe" -cp . *.java
pause
goto main-menu

:com2
cls
title Compiling...
echo Found: Java JDK 1.6.0_02
echo Compiling Server, Please wait...
"C:\Program Files\Java\jdk1.6.0_02\bin\javac.exe" -cp . *.java
pause
goto main-menu

:com3
cls
title Compiling...
echo Found: Java JDK 1.6.0_03
echo Compiling Server, Please wait...
"C:\Program Files\Java\jdk1.6.0_03\bin\javac.exe" -cp . *.java
pause
goto main-menu

:com4
cls
title Compiling...
echo Found: Java JDK 1.6.0_04
echo Compiling Server, Please wait...
"C:\Program Files\Java\jdk1.6.0_04\bin\javac.exe" -cp . *.java
pause
goto main-menu

:run
cls
title Starting Server...
java -Xmx800m server
cls
pause

:info
cls
echo ----------------------------------------------
echo.
echo    Compiler Name: LX-Compiler
echo.
echo    Compiler Version: V1.0
echo.
echo    Credits: Toonshorty
echo.
echo    Supports: Java JDK 1.6.0_01 and above
echo.
echo ----------------------------------------------
pause
goto main-menu

:help
cls
echo Need help with your server? here are some places to go to...
echo --------------
echo   M  -  MoparScape.org (quick response to questions)
echo   R  -  RuneLocus.com (nice staff)
echo   RS -  google.com (good tuts)
echo.
echo   back  -  go back to main menu
echo --------------
set /p s=selection:
if %s%==M goto openmopar
if %s%==m goto openmopar
if %s%==R goto openrunelocus
if %s%==r goto openrunelocus
if %s%==RS goto openruneserver
if %s%==rs goto openruneserver
if %s%==back goto main-menu
pause

:openmopar
start http://moparscape.org/smf
pause
goto help

:openrunelocus
start http://runelocus.com
pause
goto help

:openruneserver
start http://google.com
pause
goto help


Then save ,Do your changes and compile. should work.


( I Dont take credits for this Compiler, nor do i know who to give credits to, i just know it's a good compiler)
 
Newbie Spellweaver
Joined
Apr 12, 2008
Messages
7
Reaction score
0
nice source but wont use as Im looking for a basic server source
 
Newbie Spellweaver
Joined
May 22, 2007
Messages
16
Reaction score
0
Re: [Download][Release] Devolution (Dodian w/ Silab) No MySQL! V7 Full PKing w/ Magic

srry typo but in the character file go to my txt file (zezima) lol and its a notepad doc
and i change the ismember- 1 change it to 3 and nothing happens! any advice?
change the ismember back 2 1 and change character righs to 3

hope i helped

Chris
 
Newbie Spellweaver
Joined
Jul 26, 2008
Messages
9
Reaction score
1
lmfao all u dont is got zamorak server and changed a few codes n added commands -.-


well i cat say nothing i done that with lots of servers =P
 
Newbie Spellweaver
Joined
Dec 23, 2007
Messages
7
Reaction score
0
Re: [Download][Release] Devolution (Dodian w/ Silab) No MySQL! V7 Full PKing w/ Magic

i seem to be sruck... i ry to make my self a admin ect. and i find the 1member -1 and i replace 1 to 3 and exit the notepad doc/txt and then i go to the server log out log in and im not admin why?
:SniperHea:ninja:

yes you need to logout then make yourself "3" then save and log back in again then you will be owner

hope this helped

a compiler download (winrar):=:
it says compile your server just do that and it will compile anything

hope this helped too

thanks
regards
dj101
 
Newbie Spellweaver
Joined
Aug 5, 2008
Messages
16
Reaction score
0
LOL.

You : Lemme win
You : *****
Other guy : Fine
LOL

but nice release.
 
Junior Spellweaver
Joined
Aug 6, 2008
Messages
187
Reaction score
16
Amazing, Thanks alot ;D. Im going to clean this up and use it as my source.
 
Newbie Spellweaver
Joined
Apr 20, 2008
Messages
84
Reaction score
0
nice server man, downloading now. =D
 

cdu

Newbie Spellweaver
Joined
Mar 22, 2009
Messages
13
Reaction score
0
how do i get the silab items ?
 
Newbie Spellweaver
Joined
Aug 1, 2008
Messages
94
Reaction score
2
Nice, but. i was wondering how to change yourself to owner?
 
Back
Top