Quote:
Originally Posted by Mc-Diesel
it's already included in Devkit
there is func ShowMessageAbove Char i think or something like that

|
woow, very helpful
OT:
#include <iCharactor.h> whereever youre going to test this function
PHP Code:
CICharactor* Char = 0;
CLASSLINK_LOOP_BEGIN(CICharactor)
if (obj->GetName() == g_CICPlayer->GetCharName()) {
Char = obj;
break;
}
CLASSLINK_LOOP_END(CICharactor)
if (Char != 0) {
Char->ShowMessageAboveEntity(message, color);
}
return;