Preliminary housing

This commit is contained in:
Seefo
2014-04-08 23:47:59 -04:00
parent 6e84d13341
commit 46c2c1bf2c
11 changed files with 362 additions and 7 deletions
+6 -1
View File
@@ -84,6 +84,7 @@ public class DevService implements INetworkDispatch {
suiOptions.put((long) 21, "Weapons");
suiOptions.put((long) 22, "Misc Items");
suiOptions.put((long) 23, "Jedi Items");
//suiOptions.put((long) 120, "House Deeds");
suiOptions.put((long) 110, "Survey Devices");
break;
case 3: // [Items] Weapons
@@ -990,8 +991,12 @@ public class DevService implements INetworkDispatch {
SurveyTool solarSurveyTool = (SurveyTool) core.objectService.createObject("object/tangible/survey_tool/shared_survey_tool_solar.iff", planet);
solarSurveyTool.setCustomName("Solar Survey Device");
inventory.add(solarSurveyTool);
return;
break;
case 120:
SWGObject houseDeed = core.objectService.createObject("object/tangible/deed/player_house_deed/shared_generic_house_small_deed.iff", planet);
inventory.add(houseDeed);
return;
}
}
});