-
Enthusiast
Horizon teleporter problem
Hi there ! I have a little problem with the horizon source, I would like to put the teleporter as a keyboard shortcut (FuncApplet) but it doesn't work, I then tried to completely change the teleportation system but it doesn't work anymore, I So I put the base teleporter back and tried to find the problem but I don't want to.
I'm wondering if anyone has the same issue and if they managed to fix it.
Thank you!
-
-
Enthusiast
Hi.
We'll need more informations to try to help you. We can't help you if we don't know what code did you add to add the shortcut.
-
Enthusiast
yes of course excuse me !
Baseline :
#ifdef __APP_TELEPORTER_DROP
AddAppletFunc(AppMain_WndTeleporterDrop, APP_TELEPORTER_DROP, _T("WndTeleporterDrop"), _T("Icon_Motion.dds"), "Teleporter", 'F', "Teleporter", AUTH_GENERAL);
#endif //__APP_TELEPORTER_DROP
edit :
#ifdef __APP_TELEPORTER
AddAppletFunc(AppMain_WndTeleporter, APP_TELEPORTER, _T("WndMotion"), _T("Icon_Motion.dds"), GETTEXT(TID_TIP_MOTION), 'F');
#endif //__APP_TELEPORTER
-
Member
#ifdef __APP_TELEPORTER
DECLAREAPPLET(AppMain_WndTeleporter, new CWndTeleporter);
#endif //__APP_TELEPORTER
#ifdef __APP_TELEPORTER
AddAppletFunc(AppMain_WndTeleporter, APP_TELEPORTER, _T("WndMotion"), _T("Icon_Motion.dds"), GETTEXT(TID_TIP_MOTION), 'F');
#endif //__APP_TELEPORTER
-
Enthusiast
no it doesn't work... Liulinkan
I tried several ways but it doesn't work
-
T("WndMotion") should be T("WndTeleporterDrop") if that's how the original is.
-
Enthusiast
Without more, I don't understand where the problem comes from, no compilation error, I put it on a free 'F' key and I looked for modifications but nothing....