Jump to content

  •  

Bug Tracker Migration

June 3rd
Good news everyone! The staff has decided that it is time to slowly kill off this Bug Tracker. We will begin the process of slowly migrating from this Bug Tracker over to our Github Issues which can be found here: https://github.com/HerculesWS/Hercules/issues

Over the next couple of days, I will be closing off any opportunity to create new reports. However, I still will keep the opportunity to reply to existing Bug Reports. Doing this will allow us to slowly fix any bug reports we have listed here so that we can easily migrate over to our Issue Tracker.

Update - June 7th 2015: Creating new bug posts has been disabled. Please use our https://github.com/HerculesWS/Hercules/issues tracker to post bugs. Users are still able to reply to existing bug posts.

- Administration

Issue Information

  • #008115

  • 1 - Low

  • Confirmed

Issue Confirmations

  • Yes (4)No (0)
Photo

Starting Items

Posted by Frost on 23 March 2014 - 08:41 AM

In Official servers, when you create a character, the starting items like Knife and Cotton shirt are already equipped.

i can confirm this.

Edited by bgamez23, 23 March 2014 - 09:29 PM.


pan 
changed status to: Confirmed
changed severity to: 1 - Low

This issue is already fixed in another branch, we are just finishing adding some more things and in the next week or so I think it's going to be merged

This issue is already fixed in another branch, we are just finishing adding some more things and in the next week or so I think it's going to be merged

any news or updates regarding on this issue?

We're almost finished merging the other branch.

up

Please wait while the other branch work is finished and been merged. the merge would include this feature.



up

Please wait while the other branch work is finished and been merged. the merge would include this feature.


oh ok thanks.

what is the latest status of merging?

only starting items?
hmmm
seems to be we will be adding a new setting
to enable or disable automatic equipment of starting items..

only starting items?
hmmm
seems to be we will be adding a new setting
to enable or disable automatic equipment of starting items..


so for what else you want :?
The new format would most likely be like this:
// Starting items for new characters
			//{
			//	id: Item id
			//	amount: Item amount
			//	loc: Item position, same as in item_db if you want the item to be equipped, otherwise 0 (optional)
			//	stackable: Is stackable? (not stackable item types: weapon, armor, egg, pet armor)
			//},
			start_items: (
				{
					id: 1201; // Knife
					amount: 1;
					loc: 2;
					stackable: false;
				},
				{
					id: 2301; // Cotton_Shirt
					amount: 1;
					loc: 16;
					stackable: false;
				},
			);
self explainable format..

only starting items?
hmmm
seems to be we will be adding a new setting
to enable or disable automatic equipment of starting items..


for what reason?

any update for this issue?

I think this format should only be used for database, server settings would be very bad in this format, not to mention the huge comments that has the settings.

Isn't it easier to see how it works in aegis and do the same?