Yes SIR these Edit: I use 950020 and 950070 you have the name ID from another item that matches 950070 but its ID should be 950021. are the ID's that were needed! and a nother thanks goes to YOU!!!!!! \m/ About the compressions and etc. it is all done!!!! but skills just disapear from the pannels ^^ maybee it is client side....
as I was saing "thndr" the threads that I read were russian and not from here, after a quick search found my mistakes and corrected them, everything is fine now ^^ and the last, but not least..... does any one know the item code for easter rings and eyarings the ones that give +30 to everything again searched the item id's that I have got and the ID's give me empty strings T_T but they are from the RUS Official server....
Hy all .
I'm install my 8.1 Rappelz Private server and it work on local network but my best friend cannot connect to the login server . really , it is authentified on the auth app succesfully but have an crypted error message before the character selection page .
i'm read a lot of post , thread about this but no working solution .
authserver.opt :
S app.name:Rappelz Family Auth
S db.auth.server:127.0.0.1
S db.auth.name:Auth
S db.auth.account:sa
S db.auth._password:
S log.ip:192.168.1.45
S db.auth.port:1433
S io.auth.port:8841
N db.auth.use_webauth:0
N db.auth.use_md5:1
N db.auth.debug_md5:1
N db.auth.md5_key:2011
gameserver.opt :
S app.name:Rappelz Family Game
S auth.server_idx:1
S auth.server_name:Rappelz Family
S db.game.ip:192.168.1.45
S db.c.name:Arcadia
S db.c.server:127.0.0.1
S db.c.account:sa
S db.c._password:
S db.user.name:Telecaster
S db.user.server:127.0.0.1
S db.user.account:sa
S db.user._password:
S io.auth.ip:192.168.1.45
S io.ip_address:192.168.1.45
S io.port:7880
S game.exp_rate:10
S game.item_drop_rate:10
S game.gold_drop_rate:10000
S game.chaos_drop_rate:10
S game.party_exp_rate:5
S game.party_item_drop_rate:5
S game.party_gold_drop_rate:5000
S game.party_chaos_drop_rate:5
S game.apply_stamina_bonus:.50
S game.min_global_chat_usable_level:1
S game.item_hold_time:200000
S game.use_auto_jail:0
T game.use_auto_trap:0
T game.no_skill_cooltime:0
T game.disable_dungeon_raid_siege:1
T game.max_storage_item_count:10000
T set_user_limit:20
T game.use_login_logout_debug:1
S game.mem_usage_info_save_interval:6000
S memory.player_heap_size:1000
T game.max_level:180
N game.UseHackShield:0
N game.UseGameGuard:0
N game.skip_loading_attribute:1
N game.logout_timer:1
S game.disable_huntaholic_timer:0
S game.huntaholic_timer:1
S game.AdultServer:0
S game.PKServer:0
S game.disable_pk_on:1
S game.auction_process_request_min_interval:100
S game.auction_search_request_min_interval:100
S game.force_unregister_account_on_kick_fail:1
S game.use_storage_security:0
S game.check_storage_security_always:0
S game.use_delete_security:0
T game.use_play_point:0
T game.use_guild_donation_point:1
T game.no_collision_check:0
T game.disable_huntaholic:0
I'm using my LiveBox Play Fibre to redirect my public ip adress to my pc with to rules tcp/udp to 8841 and 7880 ports , my pc is fixed ip 192.168.1.45 , the ports are open and tested succesfully , my firewall is close .
If an good guy can help me , it so good :-)
Thanks in advance and sorry for my English , i'm an french guy .
well yesterday my server went public, what did I do for that? well I'm behind a router so the first thing was redirecting ports, second part was that I configured my gameserver and auth.opt there, where was my local ip 127.0.0.1 I changed them all to my external IP(visit to reveal your external IP) after all of this comes the most plesent part simply edit the IP in your launcher and thats it, yesterday my own server went public and I left it running at home, took some beers and my game client on a external HDD went to my friends place and played on my server from there ^^
Need a little help with registration script, how to make the script count "account_id" rows in the dbo.Account? Here is a part of the code :
$db = connect();
$query_check ="SELECT account from Account WHERE account='$username'";
$query = "INSERT Account( account_id,account,password ) VALUES(999,'$username','$converted_password')";
$query_total = mssql_query("SELECT count(account_id) FROM Account");
If I change the "999" in the VALUES clauster 1 player can create a account after that if anyone else wants to crate an account the script gives an error "row value cannot be duplicated" after that I have to change the "999" value to "998" manualy in the script and it lets to create one more account.
I need some help
How to make the player gets the item every 1 hour?
By script
1) you can do it using get_os_time() and function and global variables, example:
Code:
function get_item(item_id, count)
if get_global_variable(gv("name") .. "_got_item") == "" then
insert_item(item_id, count)
set_global_variable(gv("name") .. "_got_item", get_os_time())
elseif
get_global_variable(gv("name") .. "_got_item") + 3600 >= get_os_time() then
insert_item(item_id, count)
set_global_variable(gv("name") .. "_got_item", get_os_time())
end
end
and you just put this functin, for example, into mob kill function, npc contact function etc.
this way is worse than second one because it gives item even if player didnt stay online
2) you may add state-counter and use get_state_level() function, this is better if you want to give prizes for 1 hour staying online (dont forget to set state_time_type = 1024 in DB for this state, another way players will drop it teleporting to deathmatch). example:
Code:
function get_item(item_id, count)
local state_id = <here is you state counter id>
if get_state_level(state_id) == nil then
insert_item(item_id, count)
add_state(state_id,1,360000)
elseif get_state_level(state_id) == 0 then
insert_item(item_id, count)
add_state(state_id,1,360000)
end
end
and also put this function anywhere you want, mob kill, npc contact etc.
2) you may add state-counter and use get_state_level() function, this is better if you want to give prizes for 1 hour staying online (dont forget to set state_time_type = 1024 in DB for this state, another way players will drop it teleporting to deathmatch). example:
Code:
function get_item(item_id, count)
local state_id = <here is you state counter id>
if get_state_level(state_id) == nil then
insert_item(item_id, count)
add_state(state_id,1,360000)
elseif get_state_level(state_id) == 0 then
insert_item(item_id, count)
add_state(state_id,1,360000)
end
end
and also put this function anywhere you want, mob kill, npc contact etc.
have fun!
Thanks but do you mean that you must change all state_time_type to 1024?
Also this code if the player has a buff will get the item I want is that the player can get the item has provided stay online for one hour either have or not have buff
If you search around here enough some people have listed what each location type is for.
Yeah might be, but if everyone was searching their problems by just listing pages there wouldnt be 380 pages, because everyone is lazy, i'am too, so i just wanna clear Answer...
[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""