Hello everyone, sorry for my bad english, I'm using Google translator, good, let's go, I'm new to SourceMod basically started to learn more about one week, and I'm with a doubt over some functions could someone help me?
Well I've been reading some includes, and saw many functions which basically does not work in CS: GO, or I did wrong or did not really work.
About HUD, the amxx and known to Hudmessage, I tried the following:
PHP Code:
new Handle: hHudText = CreateHudSynchronizer();
SetHudTextParams(-1.0, 0.2, 5.0, 255, 0, 0, 255);
ShowSyncHudText(client, hHudText, "Test Hud");
CloseHandle( hHudText );
e Tambem testei:
PHP Code:
SetHudTextParams( 0.01, 0.01, 3.0, 0, 255, 51, 240);
ShowHudText( client, -1, "Test Hud" );
PHP Code:
PrintHintText( client, "Test Hud" );
So, I tested these functions, but not succeeded, someone could help me? I am creating a mod JailBreak, and need to show a Hud to inform players which and the present day.
Thanks all.
__________________