Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Rappelz > Rappelz Private Server
You last visited: Today at 03:12

  • Please register to post and access all features, it's quick, easy and FREE!

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.

Reply
 
Old 09/06/2016, 00:16   #5896
 
IShotTheSheriff's Avatar
 
elite*gold: 0
Join Date: Sep 2016
Posts: 6
Received Thanks: 1
Quote:
Originally Posted by SilentWisdom View Post
Can you tell me more, I need to know what happens when they / you try to connect remotely. Can you tell me what the auth port in your auth.opt is and what the /auth_port: is in your launcher.bat
At the time they could not connect to the login server but this has now been remedied and they are connecting fine (It was a port forwarding issue and some slight changes to the auth.opt) thank you kindly for your help and reply all the same
IShotTheSheriff is offline  
Old 09/06/2016, 21:41   #5897
 
elite*gold: 0
Join Date: Aug 2016
Posts: 10
Received Thanks: 0
cash shop

Quote:
Originally Posted by imnowlearn View Post
Need help for Cash Shop
I have rappelz 9.1 server. I want to build both marketplace on my site and shop in game. I dont know how to built both of them. Can you please tell me how can ı build them?
Thanks..
help me please !!!
imnowlearn is offline  
Old 09/07/2016, 08:53   #5898
 
SilentWisdom's Avatar
 
elite*gold: 0
Join Date: Jul 2015
Posts: 479
Received Thanks: 636
Quote:
Originally Posted by imnowlearn View Post
help me please !!!
Read what I say very carefully and several times!

There is only a few people here who can do that and none of them will do it for you mate. None, there is a khroo's (retail cs) already released but I think even it will be beyond your grasp! You need to learn how to code ASPX (C#/VB.NET) or PHP and have a good knowledge of how SQL Transactions work in order to code one yourself. Now stop asking!
SilentWisdom is offline  
Old 09/08/2016, 16:10   #5899
 
elite*gold: 0
Join Date: Mar 2013
Posts: 125
Received Thanks: 15
hello guys

I need C# code to run the game from my launcher

RappelzCmdLauncher.exe sframe.exe /auth_ip:127.0.0.1 /help_url_w:611 /help_url_h:625 /locale:Windows-1256 /country:ME /use_nprotect:0 /cash /commercial_shop /layout_dir:6 /layout_auto:0 /cash_url_w:800 /cash_url_h:631
hassuny is offline  
Old 09/08/2016, 21:18   #5900
 
SilentWisdom's Avatar
 
elite*gold: 0
Join Date: Jul 2015
Posts: 479
Received Thanks: 636
Quote:
Originally Posted by hassuny View Post
hello guys

I need C# code to run the game from my launcher

RappelzCmdLauncher.exe sframe.exe /auth_ip:127.0.0.1 /help_url_w:611 /help_url_h:625 /locale:Windows-1256 /country:ME /use_nprotect:0 /cash /commercial_shop /layout_dir:6 /layout_auto:0 /cash_url_w:800 /cash_url_h:631
Excuse me? o.O I feel inclined to say "code one yourself" :x Literally one of the easiest things you could do in this community and/or use one of the ones that have been already released, like MontesBoogy launcher.
SilentWisdom is offline  
Old 09/08/2016, 23:54   #5901
 
elite*gold: 0
Join Date: Mar 2013
Posts: 125
Received Thanks: 15
Quote:
Originally Posted by SilentWisdom View Post
Excuse me? o.O I feel inclined to say "code one yourself" :x Literally one of the easiest things you could do in this community and/or use one of the ones that have been already released, like MontesBoogy launcher.
I'm sorry

well i have already coded mine ^^

but I wonder if there is a way that would run Rappelzcmd.exe and SFrame.exe together?

Code:
if (File.Exists(Properties.Settings.Default.GameDirectory + "Launcher"))
                {
                    File.Delete(Properties.Settings.Default.GameDirectory + "Launcher");
                }
                else
                {
                    //Do Nothing
                }
                StreamWriter launcher = new StreamWriter(Properties.Settings.Default.GameDirectory+"/"+"Launcher.bat");
                launcher.Write("RappelzCmdLauncher.exe" +" "+"SFrame.exe" + " /auth_ip:127.0.0.1 /help_url_w:611 /help_url_h:625 /locale:Windows-1256 /country:ME /use_nprotect:0 /cash /commercial_shop /layout_dir:6 /layout_auto:0 /cash_url_w:800 /cash_url_h:631");
                launcher.Close();
                Process launch = new Process();
                launch.StartInfo.FileName = "Launcher.bat";
                launch.StartInfo.WorkingDirectory = Properties.Settings.Default.GameDirectory; ;
                launch.StartInfo.WindowStyle = ProcessWindowStyle.Minimized;
                launch.Start();
hassuny is offline  
Old 09/09/2016, 00:34   #5902
 
elite*gold: 0
Join Date: Jul 2012
Posts: 151
Received Thanks: 20
Hello guys.. can any one upload a string resource from 7.2 client? or download like client 7.2 . US

and thank you
GHYEAs is offline  
Old 09/09/2016, 00:49   #5903
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,912
Received Thanks: 1,490
Any string resource newer than 7.2 should have all the correct strings.

Launcher...

Code:
 private void strtGameBtn_Click(object sender, EventArgs e)
        {
            string currentDirectory = Directory.GetCurrentDirectory();
            string currentDrive = Path.GetPathRoot(currentDirectory);
            string finalArguments = string.Format("/C {0} & CD {1} & ", currentDrive.Replace("\\", ""), currentDirectory);
            string startArguments = "Sframe.exe /auth_ip:10.71.1.2 /auth_port:8841 /use_nprotect:0 /locale:ASCII /country:US /commercial_shop /cash";

            finalArguments += startArguments;

            Process.Start("RappelzCmdLauncher.exe", startArguments);

            this.Close();
        }
ThunderNikk is offline  
Thanks
2 Users
Old 09/09/2016, 01:46   #5904
 
elite*gold: 0
Join Date: Mar 2013
Posts: 125
Received Thanks: 15
Quote:
Originally Posted by thndr View Post
Launcher...

Code:
 private void strtGameBtn_Click(object sender, EventArgs e)
        {
            string currentDirectory = Directory.GetCurrentDirectory();
            string currentDrive = Path.GetPathRoot(currentDirectory);
            string finalArguments = string.Format("/C {0} & CD {1} & ", currentDrive.Replace("\\", ""), currentDirectory);
            string startArguments = "Sframe.exe /auth_ip:10.71.1.2 /auth_port:8841 /use_nprotect:0 /locale:ASCII /country:US /commercial_shop /cash";

            finalArguments += startArguments;

            Process.Start("RappelzCmdLauncher.exe", startArguments);

            this.Close();
        }
thank you thndr
hassuny is offline  
Old 09/09/2016, 11:57   #5905
 
elite*gold: 0
Join Date: Jul 2012
Posts: 151
Received Thanks: 20
Quote:
Originally Posted by thndr View Post
Any string resource newer than 7.2 should have all the correct strings.

Launcher...

Code:
 private void strtGameBtn_Click(object sender, EventArgs e)
        {
            string currentDirectory = Directory.GetCurrentDirectory();
            string currentDrive = Path.GetPathRoot(currentDirectory);
            string finalArguments = string.Format("/C {0} & CD {1} & ", currentDrive.Replace("\\", ""), currentDirectory);
            string startArguments = "Sframe.exe /auth_ip:10.71.1.2 /auth_port:8841 /use_nprotect:0 /locale:ASCII /country:US /commercial_shop /cash";

            finalArguments += startArguments;

            Process.Start("RappelzCmdLauncher.exe", startArguments);

            this.Close();
        }

can u upload it for me.. thank you
GHYEAs is offline  
Old 09/09/2016, 23:37   #5906
 
Dark Blaze's Avatar
 
elite*gold: 0
Join Date: Mar 2016
Posts: 297
Received Thanks: 89
Quote:
Originally Posted by GHYEAs View Post
can u upload it for me.. thank you
Maybe you can have a look to make your launcher start the Sframe independently without the need for RappelzCmdLauncher.
Dark Blaze is offline  
Thanks
1 User
Old 09/10/2016, 00:45   #5907
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,912
Received Thanks: 1,490
They are still asking for a string resource that has the 7.2 strings in it.

I already told them they could use one from the current client and it would have all of the 7.2 strings in it but they would rather wait for me to upload one for them than get it from a client themselves.

So as long as they don't mind waiting for me to do it then I will upload one for them someday.
ThunderNikk is offline  
Old 09/10/2016, 17:27   #5908
 
elite*gold: 0
Join Date: Dec 2009
Posts: 82
Received Thanks: 1
I NEED HELP PLEASE ! ! !

ICH BENÖTIGE HILFE BITTE ! ! !


Guten Tag

Ich bekomme stets diesen fehler:

DB COM ERROR(Thread:3, HRESULT:80040E14, GUID:0C733A63-2A1C-11CE-ADE5-00AA0044773D) : DB_ReadAccountAuthorityInfo(dbo.smp_update_secrout e_info) : Server 'ArcadiaInfo' konnte in 'sys.servers' nicht gefunden werden. Stellen Sie sicher, dass der richtige Servername angegeben wurde. Führen Sie ggf. die gespeicherte Prozedur 'sp_addlinkedserver' aus, um den Server in 'sys.servers' hinzuzufügen.


Hi I always get this error:

DB COM ERROR(Thread:3, HRESULT:80040E14, GUID:0C733A63-2A1C-11CE-ADE5-00AA0044773D) : DB_ReadAccountAuthorityInfo(dbo.smp_update_secrout e_info) : Server 'ArcadiaInfo' konnte in 'sys.servers' nicht gefunden werden. Stellen Sie sicher, dass der richtige Servername angegeben wurde. Führen Sie ggf. die gespeicherte Prozedur 'sp_addlinkedserver' aus, um den Server in 'sys.servers' hinzuzufügen.
aKa.SeNSeR is offline  
Old 09/10/2016, 19:30   #5909
 
elite*gold: 0
Join Date: Mar 2013
Posts: 125
Received Thanks: 15
Quote:
Originally Posted by aKa.SeNSeR View Post
I NEED HELP PLEASE ! ! !

ICH BENÖTIGE HILFE BITTE ! ! !


Guten Tag

Ich bekomme stets diesen fehler:

DB COM ERROR(Thread:3, HRESULT:80040E14, GUID:0C733A63-2A1C-11CE-ADE5-00AA0044773D) : DB_ReadAccountAuthorityInfo(dbo.smp_update_secrout e_info) : Server 'ArcadiaInfo' konnte in 'sys.servers' nicht gefunden werden. Stellen Sie sicher, dass der richtige Servername angegeben wurde. Führen Sie ggf. die gespeicherte Prozedur 'sp_addlinkedserver' aus, um den Server in 'sys.servers' hinzuzufügen.


Hi I always get this error:

DB COM ERROR(Thread:3, HRESULT:80040E14, GUID:0C733A63-2A1C-11CE-ADE5-00AA0044773D) : DB_ReadAccountAuthorityInfo(dbo.smp_update_secrout e_info) : Server 'ArcadiaInfo' konnte in 'sys.servers' nicht gefunden werden. Stellen Sie sicher, dass der richtige Servername angegeben wurde. Führen Sie ggf. die gespeicherte Prozedur 'sp_addlinkedserver' aus, um den Server in 'sys.servers' hinzuzufügen.
Try these DB's and remove your billing you don't need it any more



I hope this will help
hassuny is offline  
Old 09/10/2016, 20:24   #5910
 
elite*gold: 0
Join Date: Dec 2009
Posts: 82
Received Thanks: 1
Leider funktioniert dies auch nicht ! ! !




Unfortunately, this also does not work
aKa.SeNSeR is offline  
Reply

Tags
7.4, client, rappelz


Similar Threads 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 03:12.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.