Client Binary problem

01/17/2016 16:15 aden144#1
Guten Tag,

Ich wollte den Client Binary Compilen aber als ich compilt habe und in Ingame eingelogt war, könnte ich die Items im Slots nicht sehen.


Bitte ich brauche eure Hilfe, danke im voraus



PHP Code:
Warning    1    warning C4800'BOOL' forcing value to bool 'true' or 'false' (performance warning)    C:\Users\Desktop\Source Client\source\UserInterface\NetworkActorManager.cpp    370    1    UserInterface

Warning    2    warning C4800
'BOOL' forcing value to bool 'true' or 'false' (performance warning)    C:\Usersn\Desktop\Source Client\source\UserInterface\NetworkActorManager.cpp    420    1    UserInterface

Warning    3    warning C4101
'iSourceSlotIndex' unreferenced local variable    C:\Users\Desktop\Source Client\source\UserInterface\PythonPlayerModule.cpp    763    1    UserInterface

Warning    4    warning C4101
'iSlotPos' unreferenced local variable    C:\Users\Desktop\Source Client\source\UserInterface\PythonPlayerModule.cpp    978    1    UserInterface 
01/18/2016 13:36 kralcocuk#2
this is not error.
pythonplayermodule.cpp >
find:
Quote:
int iSourceSlotIndex;
delete or // (comment)

Quote:
//int iSourceSlotIndex;
find:
Quote:
int iSlotPos;
delete or //

networkactormanager.cpp
line 370 ?
Quote:
if (pOldInstance)
?

#B
Quote:
if (pOldInstance != NULL)
not recommend
01/18/2016 23:31 aden144#3
Thanks, in the networkactormanager.cpp line 370 is
Quote:
bool bIsMountingHorse = pOldInstance->IsMountingHorse();
and in the line 420 is
Quote:
bool bIsMountingHorse = pMainInstance->IsMountingHorse();
02/27/2016 18:25 geniusme#4
change bool to int