Jump to content
  • 0

spriterobeid.lub for garment costume problem


lowkey

Question


  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.01
  • Content Count:  15
  • Reputation:   0
  • Joined:  01/20/21
  • Last Seen:  

How to expand my spriterobeid beyond id@50? Because whenever is use the values 51 and up. Sprites wont show. IDs from 1 to 50 dont have any problem. 

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  43
  • Reputation:   20
  • Joined:  05/05/15
  • Last Seen:  

data\luafiles514\lua files\transparentitem\transparentitem.lub

You need to add more entries into this file.

By default the file looks something like this:

transparentItemlist = {
	{ 1, 255, 255, 25500 },
	{ 2, 255, 255, 25500 },
	{ 3, 255, 255, 25500 },
	{ 4, 255, 255, 25500 },
	{ 5, 255, 255, 25500 },
	{ 6, 255, 255, 25500 },
	{ 7, 255, 255, 25500 },
	{ 8, 255, 255, 25500 },
	{ 9, 255, 255, 25500 },
	{ 10, 255, 255, 25500 },
	{ 11, 255, 255, 25500 },
	{ 12, 255, 255, 25500 },
	{ 13, 255, 255, 25500 },
	{ 14, 255, 255, 25500 },
	{ 15, 255, 255, 25500 },
	{ 16, 255, 255, 25500 },
	{ 17, 255, 255, 25500 },
	{ 18, 255, 255, 25500 },
	{ 19, 255, 255, 25500 },
	{ 20, 255, 255, 25500 },
	{ 21, 255, 255, 2000 },
	{ 22, 255, 255, 25500 },
	{ 23, 255, 255, 25500 },
	{ 24, 255, 255, 25500 },
	{ 25, 255, 255, 25500 },
	{ 26, 255, 255, 25500 },
	{ 27, 255, 255, 25500 },
	{ 28, 255, 255, 25500 },
	{ 29, 255, 255, 25500 },
	{ 30, 255, 255, 25500 },
	{ 31, 255, 255, 25500 },
	{ 32, 255, 255, 25500 },
	{ 33, 255, 255, 25500 },
	{ 34, 255, 255, 25500 },
	{ 35, 255, 255, 25500 },
	{ 36, 255, 200, 25500 },
	{ 37, 255, 255, 25500 },
	{ 38, 255, 200, 25500 },
	{ 39, 255, 255, 25500 },
	{ 40, 255, 255, 25500 },
	{ 41, 255, 255, 25500 },
	{ 42, 255, 255, 25500 },
	{ 43, 255, 255, 25500 },
	{ 44, 255, 255, 25500 },
	{ 44, 255, 255, 25500 },
	{ 45, 255, 255, 25500 },
	{ 46, 255, 255, 25500 },
	{ 47, 255, 255, 25500 },
	{ 48, 255, 255, 25500 },
	{ 49, 255, 255, 25500 },
	{ 50, 255, 255, 25500 },
  	{ 0, 0, 0, 0 }
}

So depending on how many you want you can just ctrl D the lines a few times and ten change the numbers so if you wanted your ID range to go up to 200 you'd do something like this:

transparentItemlist = {
	{ 1, 255, 255, 25500 },
	{ 2, 255, 255, 25500 },
	{ 3, 255, 255, 25500 },
	{ 4, 255, 255, 25500 },
	{ 5, 255, 255, 25500 },
	{ 6, 255, 255, 25500 },
	{ 7, 255, 255, 25500 },
	{ 8, 255, 255, 25500 },
	{ 9, 255, 255, 25500 },
	{ 10, 255, 255, 25500 },
	{ 11, 255, 255, 25500 },
	{ 12, 255, 255, 25500 },
	{ 13, 255, 255, 25500 },
	{ 14, 255, 255, 25500 },
	{ 15, 255, 255, 25500 },
	{ 16, 255, 255, 25500 },
	{ 17, 255, 255, 25500 },
	{ 18, 255, 255, 25500 },
	{ 19, 255, 255, 25500 },
	{ 20, 255, 255, 25500 },
	{ 21, 255, 255, 2000 },
	{ 22, 255, 255, 25500 },
	{ 23, 255, 255, 25500 },
	{ 24, 255, 255, 25500 },
	{ 25, 255, 255, 25500 },
	{ 26, 255, 255, 25500 },
	{ 27, 255, 255, 25500 },
	{ 28, 255, 255, 25500 },
	{ 29, 255, 255, 25500 },
	{ 30, 255, 255, 25500 },
	{ 31, 255, 255, 25500 },
	{ 32, 255, 255, 25500 },
	{ 33, 255, 255, 25500 },
	{ 34, 255, 255, 25500 },
	{ 35, 255, 255, 25500 },
	{ 36, 255, 200, 25500 },
	{ 37, 255, 255, 25500 },
	{ 38, 255, 200, 25500 },
	{ 39, 255, 255, 25500 },
	{ 40, 255, 255, 25500 },
	{ 41, 255, 255, 25500 },
	{ 42, 255, 255, 25500 },
	{ 43, 255, 255, 25500 },
	{ 44, 255, 255, 25500 },
	{ 44, 255, 255, 25500 },
	{ 45, 255, 255, 25500 },
	{ 46, 255, 255, 25500 },
	{ 47, 255, 255, 25500 },
	{ 48, 255, 255, 25500 },
	{ 49, 255, 255, 25500 },
	{ 50, 255, 255, 25500 },
	{ 51, 255, 255, 25500 },
	{ 52, 255, 255, 25500 },
	{ 53, 255, 255, 25500 },
	{ 54, 255, 255, 25500 },
	{ 55, 255, 255, 25500 },
	{ 56, 255, 255, 25500 },
	{ 57, 255, 255, 25500 },
	{ 58, 255, 255, 25500 },
	{ 59, 255, 255, 25500 },
	{ 60, 255, 255, 25500 },
	{ 61, 255, 255, 25500 },
	{ 62, 255, 255, 25500 },
	{ 63, 255, 255, 25500 },
	{ 64, 255, 255, 25500 },
	{ 65, 255, 255, 25500 },
	{ 66, 255, 255, 25500 },
	{ 67, 255, 255, 25500 },
	{ 68, 255, 255, 25500 },
	{ 69, 255, 255, 25500 },
	{ 70, 255, 255, 25500 },
	{ 71, 255, 255, 25500 },
	{ 72, 255, 255, 25500 },
	{ 73, 255, 255, 25500 },
	{ 74, 255, 255, 25500 },
	{ 75, 255, 255, 25500 },
	{ 76, 255, 255, 25500 },
	{ 77, 255, 255, 25500 },
	{ 78, 255, 255, 25500 },
	{ 79, 255, 255, 25500 },
	{ 80, 255, 255, 25500 },
	{ 81, 255, 255, 25500 },
	{ 82, 255, 255, 25500 },
	{ 83, 255, 255, 25500 },
	{ 84, 255, 255, 25500 },
	{ 85, 255, 255, 25500 },
	{ 86, 255, 255, 25500 },
	{ 87, 255, 255, 25500 },
	{ 88, 255, 255, 25500 },
	{ 89, 255, 255, 25500 },
	{ 90, 255, 255, 25500 },
	{ 91, 255, 255, 25500 },
	{ 92, 255, 255, 25500 },
	{ 93, 255, 255, 25500 },
	{ 94, 255, 255, 25500 },
	{ 95, 255, 255, 25500 },
	{ 96, 255, 255, 25500 },
	{ 97, 255, 255, 25500 },
	{ 98, 255, 255, 25500 },
	{ 99, 255, 255, 25500 },
	{ 100, 255, 255, 25500 },
	{ 101, 255, 255, 25500 },
	{ 102, 255, 255, 25500 },
	{ 103, 255, 255, 25500 },
	{ 104, 255, 255, 25500 },
	{ 105, 255, 255, 25500 },
	{ 106, 255, 255, 25500 },
	{ 107, 255, 255, 25500 },
	{ 108, 255, 255, 25500 },
	{ 109, 255, 255, 25500 },
	{ 110, 255, 255, 25500 },
	{ 111, 255, 255, 25500 },
	{ 112, 255, 255, 25500 },
	{ 113, 255, 255, 25500 },
	{ 114, 255, 255, 25500 },
	{ 115, 255, 255, 25500 },
	{ 116, 255, 255, 25500 },
	{ 117, 255, 255, 25500 },
	{ 118, 255, 255, 25500 },
	{ 119, 255, 255, 25500 },
	{ 120, 255, 255, 25500 },
	{ 121, 255, 255, 25500 },
	{ 122, 255, 255, 25500 },
	{ 123, 255, 255, 25500 },
	{ 124, 255, 255, 25500 },
	{ 125, 255, 255, 25500 },
	{ 126, 255, 255, 25500 },
	{ 127, 255, 255, 25500 },
	{ 128, 255, 255, 25500 },
	{ 129, 255, 255, 25500 },
	{ 130, 255, 255, 25500 },
	{ 131, 255, 255, 25500 },
	{ 132, 255, 255, 25500 },
	{ 133, 255, 255, 25500 },
	{ 134, 255, 255, 25500 },
	{ 135, 255, 255, 25500 },
	{ 136, 255, 255, 25500 },
	{ 137, 255, 255, 25500 },
	{ 138, 255, 255, 25500 },
	{ 139, 255, 255, 25500 },
	{ 140, 255, 255, 25500 },
	{ 141, 255, 255, 25500 },
	{ 142, 255, 255, 25500 },
	{ 143, 255, 255, 25500 },
	{ 144, 255, 255, 25500 },
	{ 145, 255, 255, 25500 },
	{ 146, 255, 255, 25500 },
	{ 147, 255, 255, 25500 },
	{ 148, 255, 255, 25500 },
	{ 149, 255, 255, 25500 },
	{ 150, 255, 255, 25500 },
	{ 151, 255, 255, 25500 },
	{ 152, 255, 255, 25500 },
	{ 153, 255, 255, 25500 },
	{ 154, 255, 255, 25500 },
	{ 155, 255, 255, 25500 },
	{ 156, 255, 255, 25500 },
	{ 157, 255, 255, 25500 },
	{ 158, 255, 255, 25500 },
	{ 159, 255, 255, 25500 },
	{ 160, 255, 255, 25500 },
	{ 161, 255, 255, 25500 },
	{ 162, 255, 255, 25500 },
	{ 163, 255, 255, 25500 },
	{ 164, 255, 255, 25500 },
	{ 165, 255, 255, 25500 },
	{ 166, 255, 255, 25500 },
	{ 167, 255, 255, 25500 },
	{ 168, 255, 255, 25500 },
	{ 169, 255, 255, 25500 },
	{ 170, 255, 255, 25500 },
	{ 171, 255, 255, 25500 },
	{ 172, 255, 255, 25500 },
	{ 173, 255, 255, 25500 },
	{ 174, 255, 255, 25500 },
	{ 175, 255, 255, 25500 },
	{ 176, 255, 255, 25500 },
	{ 177, 255, 255, 25500 },
	{ 178, 255, 255, 25500 },
	{ 179, 255, 255, 25500 },
	{ 180, 255, 255, 25500 },
	{ 181, 255, 255, 25500 },
	{ 182, 255, 255, 25500 },
	{ 183, 255, 255, 25500 },
	{ 184, 255, 255, 25500 },
	{ 185, 255, 255, 25500 },
	{ 186, 255, 255, 25500 },
	{ 187, 255, 255, 25500 },
	{ 188, 255, 255, 25500 },
	{ 189, 255, 255, 25500 },
	{ 191, 255, 255, 25500 },
	{ 192, 255, 255, 25500 },
	{ 193, 255, 255, 25500 },
	{ 194, 255, 255, 25500 },
	{ 195, 255, 255, 25500 },
	{ 196, 255, 255, 25500 },
	{ 197, 255, 255, 25500 },
	{ 198, 255, 255, 25500 },
	{ 199, 255, 255, 25500 },
	{ 200, 255, 255, 25500 },
	{ 0, 0, 0, 0 }
}

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.01
  • Content Count:  15
  • Reputation:   0
  • Joined:  01/20/21
  • Last Seen:  

Thnks sir. What are the 255 and 25500 values for? Some have different when i check the files

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  9
  • Reputation:   0
  • Joined:  08/09/17
  • Last Seen:  

Did after adding the value the issue solved? i tried by the result still the same. only max to 50. maybe are this related to client version?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  43
  • Reputation:   2
  • Joined:  01/15/17
  • Last Seen:  

On 3/8/2021 at 2:56 AM, hmwater001 said:

Did after adding the value the issue solved? i tried by the result still the same. only max to 50. maybe are this related to client version?

It works on my side =))
btw Im using 2018 06 21 client

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