Kydoimos 916 Posted August 17, 2013 Heya - can anybody tell me - is there an easy way to re-name items in the inventory? For instance, I've re-textured some uniforms and I want to re-name them on the inventory screen. Any suggestions? Also, is there a way to change the picture? Share this post Link to post Share on other sites
Coding 12 Posted August 17, 2013 you need to make an addon. look in this mods content. Share this post Link to post Share on other sites
Kydoimos 916 Posted August 17, 2013 Ah, that's great - thanks matey. I was wondering though, I'm trying to make a MP template without mods :p. Just because it makes it more appealing for people intending to join the server. Is there any way at all you can change this without resorting to an add-on? If not, no probs! I was just curious if it could be done! I realise I'm probably asking the impossible. Share this post Link to post Share on other sites
UNDERDAOATH 10 Posted August 17, 2013 The way I'm approaching it for my mission is to create an inventory GUI which I will replace the default one. This allows for items to be renamed and also add new items, although the downside is it's somewhat time consuming and difficult and new items don't have a 3D model. Share this post Link to post Share on other sites
Kydoimos 916 Posted August 17, 2013 That's interesting underdaoath - is this something you can achieve without a mod or an add-on? For instance, if you were using it for an MP mission would you be able to play the mission without any additional downloads? Share this post Link to post Share on other sites
UNDERDAOATH 10 Posted August 18, 2013 I haven't gotten to it myself, but yes it can be done without addons. As I said it will get pretty complicated as you have to know how to create a GUI/Dialog. This is what I used to learn to create GUIs. http://www.armaholic.com/page.php?id=18362 Once you get it, it just takes a simple string replacement. Share this post Link to post Share on other sites
Kydoimos 916 Posted August 18, 2013 Ah brilliant mate, I'll study that when I get the chance! Here's what I'm going to be using it for: http://steamcommunity.com/profiles/76561198007919065/screenshots/ Share this post Link to post Share on other sites
Kydoimos 916 Posted August 24, 2013 Coding - that add-on you've given me the link for - is it possible to change item names on it? So I guess, basically, outside of changing the GUI or using an add-on, there's no way one can alter item names - neither with a script or a .sqf file or anything easy like that? Share this post Link to post Share on other sites
Coding 12 Posted August 24, 2013 Yes. In the addon you simply can set the names if you unpbo it you can see that. There might be a way for you. But it is definitive complicated... You need to find the InventoryDisplay, cycle through all items in it and change the names + icons for the item if it is the item, you edited. some hint what I mean: ((uiNamespace getVariable "hg_hudDayZ") displayCtrl 55521) ctrlSetText format ["HGF\media\hud\status_temp_%1_ca.paa", _n]; ((uiNamespace getVariable "hg_hudDayZ") displayCtrl 55521) ctrlSetTextColor [_r/255, _g/255, _b/255, 1]; Maybe this works but I can not promise it... Share this post Link to post Share on other sites
Kydoimos 916 Posted August 24, 2013 Okay Coding, cheers - I'll try that add-on. I think anything else is a bit beyond me! Share this post Link to post Share on other sites