Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Rappelz > Rappelz Private Server
You last visited: Today at 04:17

  • 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 02/25/2018, 17:59   #6901
 
elite*gold: 0
Join Date: Aug 2017
Posts: 4
Received Thanks: 0
What can cause the client to crash immediately after trying to log in?
"Cannot connect to the login server.(10061)"
My Auth server is connected, no error message there, but the game is obviously incapable of connecting to the Auth server, why could that be?
LenartP is offline  
Old 02/25/2018, 19:15   #6902
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,780
Received Thanks: 1,462
Your start .bat make sure it is pointing to the correct IP and port.

Make sure you opened ports unless you are connecting on the same computer.
ThunderNikk is offline  
Old 02/25/2018, 19:22   #6903
 
elite*gold: 0
Join Date: Aug 2017
Posts: 4
Received Thanks: 0
RappelzCmdLauncher.exe sframe.exe /auth_ip:127.0.0.1 /auth_port:58422 /use_nprotect:0 /help_url_w:611 /help_url_h:625 /locale:ASCII /country:US /cash /commercial_shop /layout_dir:6 /layout_auto:0 /cash_url_w:800 /cash_url_h:631

I am connecting on the same computer.
LenartP is offline  
Old 02/25/2018, 19:55   #6904
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,780
Received Thanks: 1,462
So what does your .opt file say your .bat should be?
ThunderNikk is offline  
Thanks
1 User
Old 02/25/2018, 20:12   #6905
 
elite*gold: 0
Join Date: Aug 2017
Posts: 4
Received Thanks: 0
.
LenartP is offline  
Old 02/27/2018, 13:19   #6906
 
thefear511's Avatar
 
elite*gold: 0
Join Date: Nov 2012
Posts: 920
Received Thanks: 234
Quote:
Originally Posted by LenartP View Post
What can cause the client to crash immediately after trying to log in?
"Cannot connect to the login server.(10061)"
My Auth server is connected, no error message there, but the game is obviously incapable of connecting to the Auth server, why could that be?
client don't match server's version most likely, can be related to sframe aswell. try new client and hash new databases instead the ones u have in ur resource folder.
thefear511 is offline  
Old 03/01/2018, 23:20   #6907
 
elite*gold: 0
Join Date: Sep 2017
Posts: 6
Received Thanks: 0
how to remove an item from the script-lua? The object is used and the usual command delete_item does not help.
AlesGaleks is offline  
Old 03/02/2018, 14:56   #6908
 
thefear511's Avatar
 
elite*gold: 0
Join Date: Nov 2012
Posts: 920
Received Thanks: 234
Quote:
Originally Posted by AlesGaleks View Post
how to remove an item from the script-lua? The object is used and the usual command delete_item does not help.
PHP Code:
local count find_item1000404 )
if 
count >= 1 then
delete_item
get_item_handle1000404 ), 
define how much items you waant function to check means if he has 1 it will delete 1, you can make it delete 1 if he had 2 and so on just look at the code and u'll understand.
thefear511 is offline  
Old 03/02/2018, 23:55   #6909


 
Xijezu's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 5,084
Received Thanks: 3,458
Quote:
Originally Posted by thefear511 View Post
PHP Code:
local count find_item1000404 )
if 
count >= 1 then
delete_item
get_item_handle1000404 ), 
define how much items you waant function to check means if he has 1 it will delete 1, you can make it delete 1 if he had 2 and so on just look at the code and u'll understand.
I'd recommend to always use is_erasable_item as well.

Code:
local count = find_item( 1000404 )
local handle = get_item_handle( 1000404 )

if count >= 1 and is_erasable_item(handle) then
   delete_item( handle, 1 )
end
Check from the Emu, it does the same thing retail does and this is what's called when using is_erasable_item
Xijezu is offline  
Thanks
2 Users
Old 03/03/2018, 00:14   #6910
 
thefear511's Avatar
 
elite*gold: 0
Join Date: Nov 2012
Posts: 920
Received Thanks: 234
Quote:
Originally Posted by Xijezu View Post
I'd recommend to always use is_erasable_item as well.

Code:
local count = find_item( 1000404 )
local handle = get_item_handle( 1000404 )

if count >= 1 and is_erasable_item(handle) then
   delete_item( handle, 1 )
end
Check from the Emu, it does the same thing retail does and this is what's called when using is_erasable_item
u da expert xd im just a noobie
thefear511 is offline  
Old 03/04/2018, 17:40   #6911
 
elite*gold: 0
Join Date: Feb 2018
Posts: 21
Received Thanks: 0
Help please (epic 9.4)
On the server there is a problem with skill chain lightning, if the circuit is done the leap from player, mob or another player, those who are around ejected from the game. In case of 1 rebound a no. What to do?
Skolko is offline  
Old 03/04/2018, 20:47   #6912
 
elite*gold: 0
Join Date: Mar 2018
Posts: 4
Received Thanks: 0
Hey guys,

how can I disable an NPC every day at 4am for one hour?

Maybe working with this ?
local current_time = get_os_date( "%Y-%m-%d %H:%M:%S" )
Pepsilight69 is offline  
Old 03/05/2018, 01:08   #6913


 
Xijezu's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 5,084
Received Thanks: 3,458
Quote:
Originally Posted by Pepsilight69 View Post
Hey guys,

how can I disable an NPC every day at 4am for one hour?

Maybe working with this ?
local current_time = get_os_date( "%Y-%m-%d %H:%M:%S" )
If I'm not mistaken there's no way of despawning an NPC through commands.
What you can do, however, is using the NPC event period stuff.
Xijezu is offline  
Thanks
1 User
Old 03/05/2018, 05:26   #6914
 
elite*gold: 0
Join Date: Mar 2018
Posts: 4
Received Thanks: 0
authserver.opt



Sql Server 2017 , Developer Edition
Auth db. name: Auth
user sa has no password.
Sql server management studio v.17.5
Pepsilight69 is offline  
Old 03/05/2018, 12:55   #6915
 
thefear511's Avatar
 
elite*gold: 0
Join Date: Nov 2012
Posts: 920
Received Thanks: 234
Quote:
Originally Posted by Pepsilight69 View Post
Hey guys,

how can I disable an NPC every day at 4am for one hour?

Maybe working with this ?
local current_time = get_os_date( "%Y-%m-%d %H:%M:%S" )
not possible to hide npc without doing a restart, but what you can is make an option available via lua code. just like online rewards
thefear511 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 +2. The time now is 04:17.


Powered by vBulletin®
Copyright ©2000 - 2024, 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 ©2024 elitepvpers All Rights Reserved.