Td errors
#1

PHP код:
C:\Users\Mohamed\Desktop\Test GM (CNR)\New folder\pawno\include\cnr/cnr_textdraws.inc(1285) : warning 213tag mismatch 
plinfo[10] = TextDrawCreate(594.000000, 190.000000, "admin");
Reply
#2

Bump
Reply
#3

Bump1
Reply
#4

PHP код:
// This variable is used to store the id of the textdraw
// so that we can use it throught the script
new Text:welcomeText
 
public 
OnGameModeInit()
{
    
// This line is used to create the textdraw. 
    // Note: This creates a textdraw without any formatting.
    
welcomeText TextDrawCreate(240.0,580.0,"Welcome to my SA-MP server");
    return 
1;
}
 
public 
OnPlayerConnect(playerid)
{
    
//This is used to show the player the textdraw when they connect.
    
TextDrawShowForPlayer(playerid,welcomeText);

No "", and ensure you are creating plInfo, as
Код:
Text:plInfo
Reply
#5

Quote:
Originally Posted by Sew_Sumi
Посмотреть сообщение
PHP код:
// This variable is used to store the id of the textdraw
// so that we can use it throught the script
new Text:welcomeText
 
public 
OnGameModeInit()
{
    
// This line is used to create the textdraw. 
    // Note: This creates a textdraw without any formatting.
    
welcomeText TextDrawCreate(240.0,580.0,"Welcome to my SA-MP server");
    return 
1;
}
 
public 
OnPlayerConnect(playerid)
{
    
//This is used to show the player the textdraw when they connect.
    
TextDrawShowForPlayer(playerid,welcomeText);

No "", and ensure you are creating plInfo, as
Код:
Text:plInfo
the solution
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)