ZelosAvalon Posted March 9, 2018 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 181 Reputation: 33 Joined: 11/11/12 Last Seen: 14 hours ago Share Posted March 9, 2018 where should I modify to change this text: Body, Left Hand, Right Hand, Robe ... ? Quote Link to comment Share on other sites More sharing options...
0 AceofSpades Posted March 9, 2018 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 114 Reputation: 6 Joined: 03/02/18 Last Seen: 44 minutes ago Share Posted March 9, 2018 (edited) like this arranging the name to refine? Edited March 9, 2018 by AceofSpades Quote Link to comment Share on other sites More sharing options...
0 ZelosAvalon Posted March 10, 2018 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 181 Reputation: 33 Joined: 11/11/12 Last Seen: 14 hours ago Author Share Posted March 10, 2018 3 hours ago, AceofSpades said: like this arranging the name to refine? like this Head, Head 2, Head 3, Body Quote Link to comment Share on other sites More sharing options...
0 Balfear Posted March 10, 2018 Group: Members Topic Count: 13 Topics Per Day: 0.00 Content Count: 256 Reputation: 245 Joined: 07/24/13 Last Seen: March 24 Share Posted March 10, 2018 8 hours ago, ZelosAvalon said: where should I modify to change this text: Body, Left Hand, Right Hand, Robe ... ? You can change in npc folder > npc/other/Global_Functions.txt line 632: function script F_getpositionname ////////////////////////////////////////////////////////////////////////////////// // Return the position name of the EQI_* equipment slot. ////////////////////////////////////////////////////////////////////////////////// function script F_getpositionname { switch( getarg(0,999) ) { case EQI_ACC_L: return "Accessory 1"; case EQI_ACC_R: return "Accessory 2"; case EQI_SHOES: return "Shoes"; case EQI_GARMENT: return "Robe"; case EQI_HEAD_LOW: return "Head 3"; case EQI_HEAD_MID: return "Head 2"; case EQI_HEAD_TOP: return "Head"; case EQI_ARMOR: return "Body"; case EQI_HAND_L: return "Left hand"; case EQI_HAND_R: return "Right hand"; case EQI_COSTUME_HEAD_TOP: return "Upper Costume Headgear"; case EQI_COSTUME_HEAD_MID: return "Middle Costume Headgear"; case EQI_COSTUME_HEAD_LOW: return "Lower Costume Headgear"; case EQI_COSTUME_GARMENT: return "Costume Garment"; case EQI_AMMO: return "Arrow/Ammunition"; case EQI_SHADOW_ARMOR: return "Shadow Armor"; case EQI_SHADOW_WEAPON: return "Shadow Weapon"; case EQI_SHADOW_SHIELD: return "Shadow Shield"; case EQI_SHADOW_SHOES: return "Shadow Shoes"; case EQI_SHADOW_ACC_R: return "Shadow Accessory 2"; case EQI_SHADOW_ACC_L: return "Shadow Accessory 1"; default: return "Unknown"; } } Quote Link to comment Share on other sites More sharing options...
Question
ZelosAvalon
where should I modify to change this text: Body, Left Hand, Right Hand, Robe ... ?
Link to comment
Share on other sites
3 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.