mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-15 00:07:39 -04:00
Refactored Junk Dealer script, Selling junk items will now place "buy back" device in datapad
Moved the SUI Windows into Java so no need for global variables, updated conversation messages for the changes to ProsePackage, added the "buy back" control device - this contains the latest 10 items you sold to the junk dealer.
This commit is contained in:
@@ -249,9 +249,11 @@ public class ObjectService implements INetworkDispatch {
|
||||
object = new TangibleObject(objectID, planet, position, orientation, Template);
|
||||
|
||||
} else if(Template.startsWith("object/intangible")) {
|
||||
if (Template.equals("object/intangible/buy_back/shared_buy_back_container.iff")) // Container sends TANO baselines but is in intangible folder.. lolsoe.
|
||||
object = new TangibleObject(objectID, planet, position, orientation, Template);
|
||||
else
|
||||
object = new IntangibleObject(objectID, planet, position, orientation,Template);
|
||||
|
||||
object = new IntangibleObject(objectID, planet, position, orientation,Template);
|
||||
|
||||
} else if(Template.startsWith("object/weapon")) {
|
||||
|
||||
object = new WeaponObject(objectID, planet, position, orientation, Template);
|
||||
|
||||
Reference in New Issue
Block a user