is it possible to send this notify

02/09/2021 12:45 Desperado1337#1
we know that whenever character write at all chat or send global this notify blown up is there ready function at devkit to send this notify(only like visual) and can i send it colored ?
[Only registered and activated users can see links. Click Here To Register...]
02/10/2021 17:26 Mc-Diesel#2
it's already included in Devkit
there is func ShowMessageAbove Char i think or something like that
[Only registered and activated users can see links. Click Here To Register...]
03/05/2021 16:38 #KB#3
Quote:
Originally Posted by Mc-Diesel View Post
it's already included in Devkit
there is func ShowMessageAbove Char i think or something like that
[Only registered and activated users can see links. Click Here To Register...]
woow, very helpful
OT:
#include <iCharactor.h> whereever youre going to test this function

PHP Code:
        CICharactorChar 0;
        
CLASSLINK_LOOP_BEGIN(CICharactor)
            if (
obj->GetName() == g_CICPlayer->GetCharName()) {
                
Char obj;
                break;
            }
        
CLASSLINK_LOOP_END(CICharactor)

            if (
Char != 0) {
                
Char->ShowMessageAboveEntity(messagecolor);
            }

        return; 
03/05/2021 17:06 WhyKillMyFox#4
Quote:
Originally Posted by #KB View Post
woow, very helpful
OT:
#include <iCharactor.h> whereever youre going to test this function

PHP Code:
        CICharactorChar 0;
        
CLASSLINK_LOOP_BEGIN(CICharactor)
            if (
obj->GetName() == g_CICPlayer->GetCharName()) {
                
Char obj;
                break;
            }
        
CLASSLINK_LOOP_END(CICharactor)

            if (
Char != 0) {
                
Char->ShowMessageAboveEntity(messagecolor);
            }

        return; 

what happened if change to this

Code:
CICharactor* Char = 0;
CLASSLINK_LOOP_BEGIN(CICharactor)
if (Char->GetName() == g_CICPlayer->GetCharName()) {
   Char->ShowMessageAboveEntity(message, color);
}
CLASSLINK_LOOP_END(CICharactor)