Jump to content
  • 0

pomoc Draw text ve filterscriptu


LudvíkXIV

Dotaz

7 odpovědí na tuto otázku

Recommended Posts

  • 0
Zdravím. Chtěl jsem se zeptat, je možné dát do filterscriptu DrawText jako například jméno serveru, které se zobrazí v pravo nahoře, nebo to musí být v gamemodu? Díky :)

mylo by sa ved endaš OnGameModeInit ale OnFilterScriptInit aspon myslim ale neviem pawno moc neviem :d

Link to comment
Share on other sites

  • 0

/*
=================================================
CTRL-C + CTRL-V  kazdy zna ne?  tak honeeeem 
================================================
*/

#include 


public OnFilterScriptInit()
{
print("\n--------------------------------------");
print("      Texdraw by bboyadam");
print("--------------------------------------\n");

new Text:TextDraw;

TextDraw = TextDrawCreate(510.0, 3.0,"www.Gamerz.4fan.cz");
TextDrawLetterSize(TextDraw,0.3,1.1);
TextDrawSetOutline(TextDraw, 1);
TextDrawSetShadow(TextDraw, 0);
TextDrawFont(TextDraw,1);

return 1;

}

 

Melo by to jit...

Link to comment
Share on other sites

  • 0

No za pokus to stálo, ale bez úspěchu... :(

 

 

#include

 

 

public OnFilterScriptInit()

{

print("\n--------------------------------------");

print(" Texdraw ");

print("--------------------------------------\n");

 

new Text:TextDraw;

 

TextDraw = TextDrawCreate(500,2,"[CZ/SK] GamingWorld [0.3c]");

TextDrawLetterSize(TextDraw,0.500000,1.000000);

TextDrawAlignment(TextDraw,2);

TextDrawBackgroundColor(TextDraw,0x008000AA);

TextDrawFont(TextDraw,0);

TextDrawUseBox(TextDraw,0);

TextDrawSetOutline(TextDraw,2);

TextDrawSetProportional(TextDraw,1);

TextDrawSetShadow(TextDraw,3);

 

return true;

 

}

 

Začínám si myslet že fakt musí být v gamemodu. A nebo, dá se udělat aby se ten FS načetl až po načtení gamemodu?

 

-- úte 23. srp 2011 19:52:45 --

 

Omlouvám se, funguje :) Děkuji mockrát za radu :)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...