Jump to content
  • 0

Missing textures upon using extended vending system


wakefield21

Question


  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  115
  • Reputation:   4
  • Joined:  08/14/16
  • Last Seen:  

Please somebody help me, where can i find this missing files, everytime i open vending skill it always shows up. (the part where you will select zeny or cash points) please please please!!!
I already searched the translated version by zackdreaver and i cannot find it there.

missing texture.png

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

  • Group:  Developer
  • Topic Count:  50
  • Topics Per Day:  0.02
  • Content Count:  763
  • Reputation:   227
  • Joined:  02/11/17
  • Last Seen:  

try changing your clientinfo langtype to 0 so we can define the missing files name :o

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  38
  • Topics Per Day:  0.01
  • Content Count:  333
  • Reputation:   67
  • Joined:  09/05/12
  • Last Seen:  

You need to add the client side files (Drop Sprite/Item and Collection Texture) for Zeny/Cash (They have own item id So you need to add the files for new item). 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  115
  • Reputation:   4
  • Joined:  08/14/16
  • Last Seen:  

@crazyarashi this is what happened when i changed the lang type.

 

@GodKnows Jhomz i'm not really sure on how to do that. can you please give some examples. sorry for such a noob question haha

missing texture 1.png

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  38
  • Topics Per Day:  0.01
  • Content Count:  333
  • Reputation:   67
  • Joined:  09/05/12
  • Last Seen:  

2 hours ago, wakefield21 said:

@GodKnows Jhomz i'm not really sure on how to do that. can you please give some examples. sorry for such a noob question haha

missing texture 1.png

Its just like how you add any custom items. but only drop sprite is required. Also you need to change the id of the zeny/cash because I think the id you used is already in the item_db.txt.
https://github.com/rathena/rathena/wiki/Custom_Items#defining-items-clientside-renewal-clients-
Check this for the clientside item addition. (You don't need the male/female, only the drop and texture(item/collection) ).
Or you can just use the coins sprite in itemInfo like this :

	//This is same sprite like Bronze Coin
	[ZenyItemID] = {
		unidentifiedDisplayName = "Zeny",
		unidentifiedResourceName = "µ¿È­",
		unidentifiedDescriptionName = { "" },
		identifiedDisplayName = "Zeny",
		identifiedResourceName = "µ¿È­",
		identifiedDescriptionName = {
			"Zeny Item Description.",
			"^FFFFFF_^000000",
			"Weight:^006600 0^000000"
		},
		slotCount = 0,
		ClassNum = 0
	},
	//This is same sprite like Mithril Coin
	[CashItemID] = {
		unidentifiedDisplayName = "Cash",
		unidentifiedResourceName = "¹Ì½º¸±È­",
		unidentifiedDescriptionName = { "" },
		identifiedDisplayName = "Cash",
		identifiedResourceName = "¹Ì½º¸±È­",
		identifiedDescriptionName = {
			"Cash Item Description.",
			"^FFFFFF_^000000",
			"Weight:^006600 0^000000"
		},
		slotCount = 0,
		ClassNum = 0
	},

Change the "ZenyItemID" and "CashItemID" to the one you use in extended vending system.
 

  • Like 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  115
  • Reputation:   4
  • Joined:  08/14/16
  • Last Seen:  

@GodKnows Jhomz thank you for your enlightening answers. that solved my problem! thanks a lot :)

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  38
  • Topics Per Day:  0.01
  • Content Count:  333
  • Reputation:   67
  • Joined:  09/05/12
  • Last Seen:  

On 10/18/2017 at 11:49 AM, wakefield21 said:

@GodKnows Jhomz thank you for your enlightening answers. that solved my problem! thanks a lot :)

No problem. Glad to help you in your problem :)

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...