|
You last visited: Today at 20:42
Advertisement
[Help Thread] Please post your questions here.
Discussion on [Help Thread] Please post your questions here. within the Rappelz Private Server forum part of the Rappelz category.
06/14/2013, 00:29
|
#1891
|
elite*gold: 0
Join Date: Jun 2013
Posts: 31
Received Thanks: 3
|
1. They need the same client you have. They need your SFrame and Start.bat
2. Resource is in the server files you downloaded to create your server. You will need to learn lua or exploit someone that knows lua to help you. You can use Notepad ++ to edit it.
Also, I still have my own problem:
Quote:
Originally Posted by Dyson49
How do we change the name of an NPC?
How do we put a Gold cost on this:
Code:
function NPC_GuideTown_Gaia_init()
cprint( "!°¡ÀÌ¾Æ °¡ÀÌµå °¡µ¿" )
set_npc_name( "@90400800" )
end
function NPC_GuideTown_Gaia_contact()
-- ´ÙÀ̾ó·Î±× Ãâ·Â
dlg_title( "Lucky" )
dlg_text( "Hi! I'm Lucky or as my title insits Guide Sage! I've been programmed by X and Y. You may use me as you wish" )
dlg_menu( "Teleporters", 'Warp()' )
dlg_menu( "Buffs", 'Buff()' )
dlg_menu( "Exit", '' )
dlg_show()
end
function Warp()
dlg_title( "Teleporter" )
dlg_text( "Welcome to this teleporting system!" )
dlg_menu( "Temple of Ancients", 'Warp_TOA()' )
dlg_menu( "Secret Temple of Ancients", 'Warp_STOA()' )
dlg_menu( "Temple of Losts Souls", 'Warp_TOLS()' )
dlg_menu( "Secret Temple of Lost Souls", 'Warp_STOLS()' )
dlg_menu( "Temple of Exiles", 'Warp_TOE()' )
dlg_menu( "Secret Temple of Exiles", 'Warp_STOE()' )
dlg_menu( "Exit Teleporting System", '' )
end
end
dlg_show()
end
function Warp_TOA()
warp(201400, 167649)
end
function Warp_STOA()
warp(169141, 22684)
end
function Warp_TOLS()
warp(201400, 151566)
end
function Warp_STOLS()
warp(152017, 22509)
end
function Warp_TOE()
warp(201400, 151566)
end
function Warp_STOE()
warp(136888, 22494)
end
function Buff()
dlg_title( "Teleporter" )
dlg_text( "Welcome to this buffing system!" )
dlg_menu( "Buffs", 'Buffs()' )
dlg_menu( "Creature Buffs", 'CBuffs()' )
dlg_menu( "Exit Buff System", '' )
end
function Buffs()
add_state( 1051, 150, 900000 )
end
function CBuffs()
add_cstate( 1051, 100, 900000 )
|
Thanks in advance for your help
|
|
|
06/14/2013, 00:51
|
#1892
|
elite*gold: 0
Join Date: Jun 2013
Posts: 18
Received Thanks: 0
|
Quote:
|
2. Resource is in the server files you downloaded to create your server. You will need to learn lua or exploit someone that knows lua to help you. You can use Notepad ++ to edit it.
|
okay but which Files? can you take snapshot and show me please ... thanks
|
|
|
06/14/2013, 00:55
|
#1893
|
elite*gold: 0
Join Date: Jun 2013
Posts: 31
Received Thanks: 3
|
In the file seen in the screen you can modify the rescource
If you need some help with some coding, ask here or mabye I can help you on my skype: Dyson.In
|
|
|
06/14/2013, 01:12
|
#1894
|
elite*gold: 0
Join Date: Jun 2013
Posts: 18
Received Thanks: 0
|
okay thanks ..
but there is two folders inside that
//// NewMap & Script /////
nothing else ...
what i edit?? ...
.
we know Resource is like that in folder of rappelz the game ..
.
Quote:
|
!Wo6nYY8 Gf=86;hya-#lQm)r{G-UHwo3 0
|
|
|
|
06/14/2013, 01:17
|
#1895
|
Moderator
elite*gold: 1
Join Date: Dec 2012
Posts: 4,915
Received Thanks: 1,492
|
I think all.web was refering to the resource files of the client that private servers always update for their players.
As far as what the players need to play your server.
1. Client that matches yours is a good start
2. A start.bat or a launcher.bat that directs their client to your hamachi IP auth server.
Further along if you make changes to the game they are usually made by resourcing.
You make changes to the server tables and save those changes as client resource file.
You update your user clients by keeping their resource folder updated.
The following topic may assist you more...
@Dyson49
You change the name of an NPC by editing the name of the NPC in the string resource, find it by checking the NPC entry in dbo.npcresource there is a column for the string for their name.
Then you need to save the changes as the db_string(ascii).rdb and hash the name and place it in the client resource folder.
See the same resourcing topic for more information.
Here is an example of gold charging for lua...
Code:
function MasterBuff()
local gold = gv("gold")
if gold >= 5000000
then sv("gold",gold -5000000)
update_gold_chaos()
add_state(163407,55,360000)
add_state(163404,55,360000)
add_state(163405,55,360000)
add_state(163406,55,360000)
add_state(2507,320,360000)
add_state(2505,320,360000)
add_state(163433,80,360000)
add_state(314016,72,360000)
add_state(163429,10,360000)
add_state(2508,41,360000)
add_state(2506,41,360000)
add_state(314017,72,360000)
add_state(314018,72,360000)
add_state(13423,40,360000)
add_state(13424,290,360000)
add_state(13425,290,360000)
add_state(163448,40,360000)
add_state(163449,40,360000)
add_state(314049,120,360000)
add_state(314099,96,360000)
add_cstate(163407,55,360000)
add_cstate(163404,55,360000)
add_cstate(163405,55,360000)
add_cstate(163406,55,360000)
add_cstate(2507,320,360000)
add_cstate(2505,320,360000)
add_cstate(163433,80,360000)
add_cstate(314016,72,360000)
add_cstate(163429,10,360000)
add_cstate(2508,41,360000)
add_cstate(2506,41,360000)
add_cstate(314017,72,360000)
add_cstate(314018,72,360000)
add_cstate(13423,40,360000)
add_cstate(13424,290,360000)
add_cstate(13425,290,360000)
add_cstate(163448,40,360000)
add_cstate(163449,40,360000)
add_cstate(314049,120,360000)
add_cstate(314099,96,360000)
else dlg_title( "@90702501" )
dlg_text( "@90702504" )
dlg_menu( "@90010003", "NPC_Foreign_Secroute_mage_contact()" )
dlg_menu( "@90010002", " " )
dlg_show()
end
end
|
|
|
06/14/2013, 01:27
|
#1896
|
elite*gold: 0
Join Date: Jun 2013
Posts: 18
Received Thanks: 0
|
thanks thndr ,, i,ll try ....
|
|
|
06/14/2013, 01:48
|
#1897
|
Moderator
elite*gold: 1
Join Date: Dec 2012
Posts: 4,915
Received Thanks: 1,492
|
Oh and one more thing Dyson49
The db_string(ascii).rdb is because I am US and English language
If you launch with a different language it would be the string resource table and rdb for your language respectively.
|
|
|
06/14/2013, 01:54
|
#1898
|
elite*gold: 0
Join Date: Jun 2013
Posts: 31
Received Thanks: 3
|
Got a new error that is weird. I open the start.bat but then it closes saying localinfo not found
|
|
|
06/14/2013, 02:28
|
#1899
|
Moderator
elite*gold: 1
Join Date: Dec 2012
Posts: 4,915
Received Thanks: 1,492
|
That is odd
Localinfo file is packed in the clients data files.
Data.007 to be exact
You could try dumping your localeinfo(ascii).ini and hash the file name to...
5Q(^Ef8)A2JZ~62PUS~(A3O
Then put in the clients resource folder.
Make sure your launch arguments match your localinfo file that would be in your client.
example: I run the US client so my file is localeinfo(ascii).ini
My start.bat is...
SFrame.exe" /auth_ip:10.71.1.2 /auth_port:8841 /locale:ASCII /country:US /commercial_shop /cash
My start bat sets (ascii) so all of the resources the game uses is (ascii)
If your language is different it would be for your language.
|
|
|
06/14/2013, 02:54
|
#1900
|
elite*gold: 0
Join Date: Jun 2013
Posts: 31
Received Thanks: 3
|
There's an error after but I cant read it:
|
|
|
06/14/2013, 03:17
|
#1901
|
Moderator
elite*gold: 1
Join Date: Dec 2012
Posts: 4,915
Received Thanks: 1,492
|
The client has encountered an error unexpectedly.
Send error information?
Yes No
Your client is German?
|
|
|
06/14/2013, 12:26
|
#1902
|
elite*gold: 0
Join Date: Apr 2011
Posts: 278
Received Thanks: 73
|
I have made a PHP telnet --> gamserver tool ..... until now I only made auto-notice and manual noticing pages ... it can be used from your phone , computer ... ETC .. and it helped me alot
I need some (NEW!! functions , ideas) that I can use to benefit from that pages .... rather than old-school functions that we've seen in dozens of gm-tools .
and yes ... you can execute every single command in-game without being in game ....
|
|
|
06/14/2013, 20:20
|
#1903
|
elite*gold: 0
Join Date: Jun 2013
Posts: 31
Received Thanks: 3
|
Quote:
Originally Posted by thndr
The client has encountered an error unexpectedly.
Send error information?
Yes No
Your client is German?
|
No it's in English
|
|
|
06/14/2013, 21:16
|
#1904
|
Moderator
elite*gold: 1
Join Date: Dec 2012
Posts: 4,915
Received Thanks: 1,492
|
Quote:
Originally Posted by Dyson49
No it's in English
|
Is your sframe German?
Does not make sense English client with error message in German, but I had a German sframe once and everything was in English except for critical, guard, dodge messages.
I have an English sframe if you would like.
Are you still getting the localinfo error?
|
|
|
06/14/2013, 21:40
|
#1905
|
elite*gold: 0
Join Date: Jun 2013
Posts: 31
Received Thanks: 3
|
Well I have this one:
And YES I still get the error
And yes if you could I would like the English SFrame and Splash Loading is weird I think it turned German at some point if I could have the English one of that too please.
|
|
|
Similar Threads
|
[Helping Topic] 24/7 Helping Services!
08/27/2008 - EO PServer Hosting - 31 Replies
stucked on anything while setuping your server?
post your problem here and you will get answer as fast as possible better than spamming with posts :cool:
first of all try reading Ahmedpotop's Pserver All thing guide.
if your couldn't solve it out post your problem down here
""That includes PHP rankings pages / registrations pages / Status pages""
|
All times are GMT +1. The time now is 20:44.
|
|