Ran into a few more issues with the server
Master Class Gear is Korean in my string database. How can I switch this back to english
Why don't you just take Raskim's advice and dump an English string resource from an English client and import it into the dbo.arcadia.StringResource database?
That will correct your butchered string resource that was left for you in the database by someone else.
Quote:
Originally Posted by Sooperman130
Also, is there a way to disable weight, or set unlimited weight?
You could set the weight of all items in the dbo.arcadia.ItemResource to 0 and then create a new db_item.rdb for the client.
Well if you are talking about D3 armor for obvious game saving reasons it was never released in the US so it may have never been localized so you may need to localize your own strings for it.
I added WorldLocation for my new dungeon however It seems like Horizon and others zones got affected as-well (It became like Volcanus or something , I can't even create a party while I'm in it) and It also became without lights . Is it some kind of bugs or there is some changed in 9.1 ?
I would like to create a permanent portal that on click teleports you somewhere, could someone tell me how to do this.
It's nothing hard , simply copy one line from FieldPropResource , give a new unique ID , write something on script_text column , let's say Teleport_portal() as an example
Make a lua function :
Code:
function Teleport_portal()
warp(X_here , Y_here)
end
and you are good to go , just make sure to make the .RDB and hash it and put it in your Client resources.
function set_player_equip_enhance(equip_id,player,enhance,t yp)
local row
--typ 1 = fixed value
--typ 2 = increase current value
--typ 3 = decrease current value
local equip_name = get_item_name_by_code(get_item_code( get_wear_item_handle(equip_id,player)))
if equip_name == "SVR0" or equip_name == nil then
whisper(gv("name"),"No Equip there.")
else
row = "<br>Change's on "..player.."'s Equip<br><br>Before | +"..get_item_enhance(get_wear_item_handle(equip_id ,player)).." "..equip_name.." Lv "..get_item_level(get_wear_item_handle(equip_id,pl ayer)).."<br><br>"
if typ == 1 then
set_item_enhance( get_wear_item_handle(equip_id,player),enhance)
elseif typ == 2 then
set_item_enhance( get_wear_item_handle(equip_id,player),get_item_enh ance(get_wear_item_handle(equip_id,player))+enhanc e)
else
set_item_enhance( get_wear_item_handle(equip_id,player),get_item_enh ance(get_wear_item_handle(equip_id,player))-enhance)
end
row = row.."After | +"..get_item_enhance(get_wear_item_handle(equip_id ,player)).." "..equip_name.." Lv "..get_item_level(get_wear_item_handle(equip_id,pl ayer))
row = row.."<br>Durability : "..(get_item_ethereal_durability(get_wear_item_han dle(equip_id,player))/10000)
dlg_general(row)
end
end
[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""