1. game.py açılır ve aratılır : onPressKeyDict[app.DIK_F4] = lambda : self.__PressQuickSlot(7)
  2. altına ekle :
  3. onPressKeyDict[app.DIK_F8] = lambda : self.Kamera_func_on()
  4. onPressKeyDict[app.DIK_F9] = lambda : self.Kamera_func_off()
  5. arat : def __SelectQuickPage(self, pageIndex):
  6. üstüne ekle :
  7. def Kamera_func_on(self):
  8. x, y, z = player.GetMainCharacterPosition()
  9. app.SetCameraSetting(int(x), int(-y), int(z), 5000, 10, 30)
  10. def Kamera_func_off(self):
  11. app.SetDefaultCamera()