if your like me just copy&paste everything from the editor folder into your main retail folder to create a big mess. then where it says  echo("\n--------- Initializing FPS ---------");
  // Load the scripts that start it all...
  exec("base/client/init.cs");
  exec("base/server/init.cs");
  exec("base/data/init.cs");
  initCommon();
 Â
turn it into
 echo("\n--------- Initializing FPS ---------");
  // Load the scripts that start it all...
  exec("./editor.cs");
  exec("./particleEditor.cs");
  exec("./GuiEditorGui.gui");
  exec("./ParticleEditor.gui");
  exec("base/client/init.cs");
  exec("base/server/init.cs");
  exec("base/data/init.cs");
  initCommon();
i did that and it worked. just because i forgot the renaming shortcuts thing.