iFoxkun Posted December 1, 2011 Posted December 1, 2011 I know how to use this command but I want to change /showname 1 as default. Ex. Name (Party Name) Guild Name (Title) to -> Guild title Name Quote
0 Brian Posted December 1, 2011 Posted December 1, 2011 If your client uses LUA files, simply login and turn /showname On or Off how you want it. The setting will be saved in /data/OptionInfo.lua which you can distribute to your players with your client. If your client is pre-LUA, use the diff option OFF by default /Showname Quote
0 iFoxkun Posted December 1, 2011 Author Posted December 1, 2011 Theres so much of /showname not so sure which one: CmdOnOffOderList = { "/notrade", "/noshift", "/noctrl", "/skillfail", "/notalkmsg", "/notalkmsg2", "/showname", "/fog", "/aura", "/window", "/miss", "/q1", "/q2", "/effect", "/bgm", "/sound", "/loginout", "/shopping", "/stateinfo", "/snap", "/itemsnap", "/skillsnap", "/hoai", "/merai", "/camera", "/btg" } CmdOnOffList = { ["/battlemode"] = 0, ["/notrade"] = 0, ["/noshift"] = 0, ["/noctrl"] = 1, ["/skillfail"] = 1, ["/notalkmsg"] = 0, ["/notalkmsg2"] = 0, ["/showname"] = 1, ["/fog"] = 1, ["/aura"] = 1, ["/window"] = 0, ["/miss"] = 1, ["/q1"] = 0, ["/q2"] = 0, ["/effect"] = 1, ["/bgm"] = 1, ["/sound"] = 1, ["/loginout"] = 1, ["/shopping"] = 1, ["/stateinfo"] = 1, ["/snap"] = 0, ["/itemsnap"] = 0, ["/skillsnap"] = 1, ["/hoai"] = 0, ["/merai"] = 0, ["/camera"] = 0, ["/btg"] = 1 } CmdHelpList = { --Orderlist Desc Start ["/battlemode"] = MsgStrID.MSI_BATTLEMODE, ["/notrade"] = MsgStrID.MSI_NOTRADE, ["/noshift"] = MsgStrID.MSI_NOSHIFT, ["/noctrl"] = MsgStrID.MSI_NOCTRL, ["/skillfail"] = MsgStrID.MSI_SKILLFAIL, ["/notalkmsg"] = MsgStrID.MSI_NOTALKMSG, ["/notalkmsg2"] = MsgStrID.MSI_NOTALKMSG2, ["/showname_on"] = MsgStrID.MSI_SHOWNAME_ON, ["/showname_off"] = MsgStrID.MSI_SHOWNAME_OFF, ["/fog"] = MsgStrID.MSI_FOG, ["/aura"] = MsgStrID.MSI_AURA, ["/window"] = MsgStrID.MSI_WINDOW, ["/miss"] = MsgStrID.MSI_MISS, ["/q1"] = MsgStrID.MSI_Q1, ["/q2"] = MsgStrID.MSI_Q2, ["/effect"] = MsgStrID.MSI_EFFECT, ["/bgm"] = MsgStrID.MSI_BGM, ["/sound"] = MsgStrID.MSI_SOUND, ["/loginout"] = MsgStrID.MSI_LOGINOUT, ["/shopping"] = MsgStrID.MSI_SHOPPING, ["/stateinfo"] = MsgStrID.MSI_STATEINFO, ["/snap"] = MsgStrID.MSI_SNAP, ["/itemsnap"] = MsgStrID.MSI_ITEMSNAP, ["/skillsnap"] = MsgStrID.MSI_SKILLSNAP, ["/hoai"] = MsgStrID.MSI_HOAI, ["/merai"] = MsgStrID.MSI_MERAI, ["/camera"] = MsgStrID.MSI_CAMERA, ["/btg"] = MsgStrID.MSI_BTG, --Orderlist Desc End ["/hi"] = MsgStrID.MSI_HI, ["/blacksmith"] = MsgStrID.MSI_BLACKSMITH, ["/alchemist"] = MsgStrID.MSI_ALCHEMIST, [""] = MsgStrID.MSI_HELP, ["/who"] = MsgStrID.MSI_WHO, ["/sit"] = MsgStrID.MSI_SIT, ["/stand"] = MsgStrID.MSI_STAND, ["/q"] = MsgStrID.MSI_Q, ["/leave"] = MsgStrID.MSI_LEAVE, ["/where"] = MsgStrID.MSI_WHERE, ["/memo"] = MsgStrID.MSI_MEMO, ["/chat"] = MsgStrID.MSI_CHAT, ["/savechat"] = MsgStrID.MSI_SAVECHAT, ["/doridori"] = MsgStrID.MSI_DORIDORI, ["/bangbang"] = MsgStrID.MSI_BANGBANG, ["/bingbing"] = MsgStrID.MSI_BINGBING, ["/ex"] = MsgStrID.MSI_EX, ["/inall"] = MsgStrID.MSI_INALL, ["/exall"] = MsgStrID.MSI_EXALL, ["/pvpinfo"] = MsgStrID.MSI_PVPINFO, ["/hunting"] = MsgStrID.MSI_HUNTING } OptionInfoList = { ["Window_XPos"] = -1, ["Window_YPos"] = -1, ["Trilinear"] = 0, ["Bgm_Volume"] = 100, ["Effect_Volume"] = 100, ["AutoOpen1to1Window"] = 1, ["AutoOpen1to1Window_Friend"] = 1, ["PlaySound_Open1to1Window"] = 1, ["Simplicity_SkillList"] = 0, ["Show_SkillDescript"] = 0, ["ChangeChatMode"] = 1, ["LockMouse"] = 0, ["ChannelCopID"] = 0, ["Outdoor_ViewLatitude"] = -45, ["Outdoor_ViewDistance"] = 300, ["Indoor_ViewLatitude"] = -45, ["Indoor_ViewDistance"] = 300, ["SkinName"] = "<Basic Skin>" } Quote
0 Brian Posted December 1, 2011 Posted December 1, 2011 err that's not the file I was referring to. I think you opened ..datalua filesoptioninfooptioninfo.lua The file I was referring to is ..dataOptionInfo.lua All you have to do is this: start your RO client login all the way to the map-server type /showname to turn it On/Off how you want it to be logout, close RO and now the setting will be automagically saved in ..dataOptionInfo.lua Now when you distribute your client, include the file ..dataOptionInfo.lua (this contains default settings for some slash-commands). Quote
0 iFoxkun Posted December 1, 2011 Author Posted December 1, 2011 I did your instructions, but it didn't change, do i have to repack the grf? Quote
0 Brian Posted December 1, 2011 Posted December 1, 2011 You do not have to pack it in the GRF. Actually, the ..dataOptionInfo.lua file has to be in the data folder so the client can write to it. - can you double check you have a file "OptionInfo.lua" in your ROdata folder ? - where is your RO folder located? (if it's in Program Files, your client might have write permission to save the file) Quote
0 iFoxkun Posted December 1, 2011 Author Posted December 1, 2011 (edited) Oh Now I see it, i thought you meant the .grf data folder, oh nope its still like the other one. **EDIT** Let me rephrase that, It still doesn't change. Edited December 1, 2011 by iFoxkun Quote
0 jowhnny Posted August 28, 2018 Posted August 28, 2018 In case anyone encounters this problem, I've been struggling with it for the whole day now. I was compiling and de-compiling Lub files looking for an answer and then I finally figured it had nothing to do with Lubs or Luas. It's simply the clientinfo.xml, you gotta set the langtype to 18. As simple as that. This will make your hexed default the showname to the thick letters for any fresh installs. Quote
Question
iFoxkun
I know how to use this command but I want to change /showname 1 as default.
Ex.
Name (Party Name)
Guild Name (Title)
to ->
Guild title
Name
7 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.