24.05.2009, 15:10
Hey evrey one how are you today? Well, Ive got some "basic" or not lol questions.
if you can help please help me thank you. okay here we go
How to change "unknown Command" To what ever I want?
how to make an /n(needhelp) chat?
Why I can see only one "textdraw" in my server?
Why when I port forword "7777" my server still dosent show up.
Textdraw code:
whats wrong? thanks for your help,
thank you.
that it for my questions.
if you can help please help me thank you. okay here we go
How to change "unknown Command" To what ever I want?
how to make an /n(needhelp) chat?
Why I can see only one "textdraw" in my server?
Why when I port forword "7777" my server still dosent show up.
Textdraw code:
pawn Код:
After the includes.
//the textdraws
new Text:Textdraw1;
new Text:Textdraw0;
after the /kill command
TextDrawShowForPlayer(playerid, Textdraw1);
return 0;
EX:
if(strcmp(cmdtext, "/kill", true) == 0)
{
SetPlayerHealth(playerid, 0.0);
return 1;
}
// PROCESS OTHER COMMANDS
TextDrawShowForPlayer(playerid, Textdraw1);
return 0;
}
after add static vehcile:
//the forum textdraw
Textdraw1 = TextDrawCreate(1.000000,433.000000,"http://www.ppfs.co.cc/co.nr[url=http://][/url]");
TextDrawAlignment(Textdraw1,0);
TextDrawBackgroundColor(Textdraw1,0x000000ff);
TextDrawFont(Textdraw1,2);
TextDrawLetterSize(Textdraw1,0.288888,1.100000);
TextDrawColor(Textdraw1,0xffffffff);
TextDrawSetOutline(Textdraw1,1);
TextDrawSetProportional(Textdraw1,1);
TextDrawSetShadow(Textdraw1,1);
//the textdraw above hp
Textdraw0 = TextDrawCreate(542.000000,54.000000,"Propilots Fun Server");
TextDrawAlignment(Textdraw0,0);
TextDrawBackgroundColor(Textdraw0,0x000000ff);
TextDrawFont(Textdraw0,3);
TextDrawLetterSize(Textdraw0,0.299999,1.100000);
TextDrawColor(Textdraw0,0xffffffff);
TextDrawSetOutline(Textdraw0,1);
TextDrawSetProportional(Textdraw0,1);
TextDrawSetShadow(Textdraw0,4);
thank you.
that it for my questions.