Jump to content
  • 0

/showname 1


iFoxkun

Question


  • Group:  Members
  • Topic Count:  24
  • Topics Per Day:  0.01
  • Content Count:  189
  • Reputation:   16
  • Joined:  11/20/11
  • Last Seen:  

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

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  75
  • Topics Per Day:  0.02
  • Content Count:  2223
  • Reputation:   593
  • Joined:  10/26/11
  • Last Seen:  

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

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  24
  • Topics Per Day:  0.01
  • Content Count:  189
  • Reputation:   16
  • Joined:  11/20/11
  • Last Seen:  

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>"
}

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  75
  • Topics Per Day:  0.02
  • Content Count:  2223
  • Reputation:   593
  • Joined:  10/26/11
  • Last Seen:  

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:

  1. start your RO client
  2. login all the way to the map-server
  3. type /showname to turn it On/Off how you want it to be
  4. logout, close RO
  5. 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).

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  24
  • Topics Per Day:  0.01
  • Content Count:  189
  • Reputation:   16
  • Joined:  11/20/11
  • Last Seen:  

I did your instructions, but it didn't change, do i have to repack the grf?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  75
  • Topics Per Day:  0.02
  • Content Count:  2223
  • Reputation:   593
  • Joined:  10/26/11
  • Last Seen:  

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)

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  24
  • Topics Per Day:  0.01
  • Content Count:  189
  • Reputation:   16
  • Joined:  11/20/11
  • Last Seen:  

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 by iFoxkun
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  3
  • Reputation:   4
  • Joined:  08/28/18
  • Last Seen:  

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.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...