Added shuttling system, can travel between points

Only the Mos Eisley transport ship exists. Will more than likely change
how shuttles/transports are added to the game world.
This commit is contained in:
Waverunner
2013-11-05 19:59:15 -05:00
parent 67e4333171
commit a5eb18ab2b
17 changed files with 366 additions and 62 deletions
+12
View File
@@ -250,6 +250,18 @@ public class CommandService implements INetworkDispatch {
}
public void callCommand(CreatureObject actor, String commandName, SWGObject target, String commandArgs) {
if (actor == null)
return;
BaseSWGCommand command = getCommandByName(commandName);
if (command == null)
return;
core.scriptService.callScript("scripts/commands/", command.getCommandName(), "run", core, actor, target, commandArgs);
System.out.println("Script called.");
}
@Override
public void shutdown() {