Jump to content
  • 0

pomoc text


cihlas222

Dotaz

prosím mám problem chci si dát na servr že kdyš nikdo příjde napíše to Výtejte na servru a mám chybu C:\Users\Marek -BF3-MW3\Desktop\Nová složka (3)\gamemodes\gtane.pwn(96) : error 004: function "SendPlayerFormattedText" is not implemented

Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase

 

a radek mám takle

 

SendPlayerFormattedText(playerid, "Výtáme vás na .", 0);

gActivePlayers[playerid]++;

gLastGaveCash[playerid] = GetTickCount();

return 1;

}

Link to comment
Share on other sites

9 odpovědí na tuto otázku

Recommended Posts

  • 0

chces udělat text draw nebo takovou reklamu kdyz nekdo prijde na server ze mu to tam pobezi dole s prava do leva ?

 

 

_________________________PawNO_________

Naštivte:

 

 

************

 

EDIT By QWER

Link to comment
Share on other sites

  • 0

Hale dej si tam jen pokud chces tento text draw taky je dobry

 

#include 

#define dcmd(%1,%2,%3) if ((strcmp((%3)[1], #%1, true, (%2)) == 0) && ((((%3)[(%2) + 1] == 0) && (dcmd_%1(playerid, "")))||(((%3)[(%2) + 1] == 32) && (dcmd_%1(playerid, (%3)[(%2) + 2]))))) return 1
#define BARVA_MODRA 0x33CCFFAA
#define BARVA_BILA 0xEFEFF7AA
#define MAX_PLAYERS_EX 200
#define B_BILA			0xff0000
#define TABULKY  1
#define COLOR_GREEN 0x40FF40FF

#pragma tabsize 0

new Text:textdraw3;
//--------------------------------------------------

public OnFilterScriptInit()
{

//--------------------------------------------------
textdraw3 = TextDrawCreate(428,434,"Vitejte na serveru");
TextDrawLetterSize(textdraw3,0.349999,1.000000);
TextDrawAlignment(textdraw3,0);
TextDrawBackgroundColor(textdraw3,0x008000AA);
TextDrawFont(textdraw3,1);
TextDrawUseBox(textdraw3,0);
TextDrawSetOutline(textdraw3,0);
TextDrawSetProportional(textdraw3,1);
TextDrawSetShadow(textdraw3,1);
//--------------------------------------------------



return 1;
}

public OnPlayerSpawn(playerid)
{

TextDrawShowForPlayer(playerid,textdraw3);

return 1;
}

public OnPlayerDeath(playerid, killerid, reason)
{

   TextDrawShowForPlayer(playerid,textdraw3);
	return 1;
}

public OnPlayerText(playerid, text[])
{


return 1;
}

 

 

 

 

_________________________PawNO_________

Naštivte:

 

http://www.velka-parba.mzf.cz

Link to comment
Share on other sites

  • 0

přečti si SZ soudruhu ;)

PS: já osobně bych to udělal takto ;)

new params1;

public OnPlayerConnect(playerid)
{
   new string[50];
   format(string, 50, "~w~Vitejte na serveru",params1);
GameTextForPlayer(playerid, string, 3000, 3);
return 1;
}

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...