Jump to content

Question

Posted

Hi,

 

How is it possible to create a empty space/square between items in npc shops?

For exemple this items appear in line in the npc buylist,
Now i want to fill the other squares with empty spaces to the other items start only in the line bellow.
Just a matter of organization.

 

<item id="1">
<ingredient id="57" count="3500"/>
<ingredient id="22" count="1"/>
<production id="23" count="1"/>
</item>
 
Do something here to separate the items?
 
<item id="2">
<ingredient id="57" count="2500"/>
<ingredient id="29" count="1"/>
<production id="2386" count="1"/>
</item>
<item id="3">
<ingredient id="57" count="1500"/>
<ingredient id="42" count="1"/>
<production id="43" count="1"/>
</item>

 

Acis, interlude
Thank you

8 answers to this question

Recommended Posts

  • 0
Posted

Try to jump of id, if that doesn't work it means id isn't used as slot and so you have to implement it by yourself (probably using LinkedList to retain index).

  • 0
Posted

Try to jump of id, if that doesn't work it means id isn't used as slot and so you have to implement it by yourself (probably using LinkedList to retain index).

 

All Lists retain indexes including ArrayList

  • 0
Posted

Order isn't safe for arraylist, it uses the order the items were put on list.

 

LinkedList does the same, whats your point?

  • 0
Posted (edited)

Test if it's the same for players skills, and we will talk again.

 

That has nothing to do with order, linkedlist is a list and behaves like ArrayList

 

List<Object> list = new ArrayList<>();

List<Object> list2 = new LinkedList<>();

 

the only difference here is that linkedlist also implements Queue and Deque

 

ArrayList is backed by array, you think that array's aren't order safe? Sets aren't but they are different data structures. All lists are order safe in all programming languages

Edited by xxdem
  • 0
Posted

I was asking this, because long time ago, i had a server, where i did that.
But was H5/Freya.

I dont have that anymore, i lost it.
I do remeber however, that in multisells to make a empty square, i used this:

 

<item>
<production count="0" id="0" />
</item>

In shops was similar, but i know it was difrent.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock