[HELP]3DTextLabel
#1

I have created a /aduty Command with creating a 3DTextlabel and attach this to the Player.

Code:
new Text3D:Admin[MAX_PLAYERS];
OnPlayerConnect:
Code:
Delete3DTextLabel(Admin[playerid]);
OnPlayerDisdonnect:
Code:
Delete3DTextLabel(Admin[playerid]);
/aduty
Code:
	if(strcmp("/aduty",cmdtext,true) == 0)
	{
	if(Spieler[playerid][AdminLevel] >=1)
	if(GetPVarInt(playerid,"Aduty") == 0)
	{
	SetPlayerColor(playerid,COLOR_Admin);
 	new string[256];
    new spieler[MAX_PLAYER_NAME];
    GetPlayerName(playerid,spieler,sizeof(spieler));
   	format(string, sizeof(string),  "Server: Admin %s is now duty! If you have Questions, you can ask him/her >>> /report", spieler);
	SendClientMessageToAll(COLOR_Admin, string);
	SetPVarInt(playerid, "Aduty", 1);
	SetPVarInt(playerid, "Clan", 1);
	print(string);
	Admin[playerid] = Create3DTextLabel("Admin",COLOR_Admin,30.0,40.0,50.0,40.0,0);
	Attach3DTextLabelToPlayer(Admin[playerid], playerid, 0.0, 0.0, 0.4);
	}
	else
	{
	SendClientMessage(playerid,COLOR_RED,"You aren't a Admin!");
	}
	return 1;
}
/offduty
Code:
if(strcmp("/offduty",cmdtext,true) == 0)
	{
	if(Spieler[playerid][AdminLevel] >=1)
	if(GetPVarInt(playerid,"Aduty") == 1)
	{
	SetPlayerColor(playerid,COLOR_ORANGE);
 	new string[256];
    new spieler[MAX_PLAYER_NAME];
    GetPlayerName(playerid,spieler,sizeof(spieler));
   	format(string, sizeof(string),  "Server: Admin %s is now Offduty!", spieler);
	SendClientMessageToAll(COLOR_Admin, string);
	SetPVarInt(playerid, "Aduty", 0);
	SetPVarInt(playerid, "Clan", 0);
	print(string);
	Delete3DTextLabel(Admin[playerid]);
	}
	else
	{
	SendClientMessage(playerid,COLOR_RED,"You aren't a Admin!");
	}
	return 1;
}
When a new Player connect, it destroys a using 3DTextLabel from a Admin who is duty and using it.
Please help me.

]B4E[kengston
Reply
#2

What about this? :
pawn Code:
new PlayerText3D:Admin[MAX_PLAYERS];
Replace every Create3DTextLabel and Delete3DTextLabel with CreatePlayer3DTextLabel and DeletePlayer3DTextLabel.You were creating only 1 Text avaiable for all players instead of 1 text avaiable for 1 player.

Edit: Let the code how it was when you posted this thread, and remove the Delete3DTextLabel from OnPlayerConnect.
Reply
#3

Oh right! Thank you Franck_ ! You helped me a lot!!! THX

Edit:
Code:
\gamemodes\BJ.pwn(10266) : warning 213: tag mismatch
Line 10266:
Code:
Attach3DTextLabelToPlayer(Admin[playerid], playerid, 0.0, 0.0, 0.4);
Reply
#4

Please Help me! It is very important
Reply
#5

I'm having the same problem. Annoying tag mismatch.
Reply
#6

Quote:
Originally Posted by Jordman248
View Post
I'm having the same problem. Annoying tag mismatch.
If you think the script is right then consider reading a tutorial for such warnings.

Quote:

Getting rid of stupid tag warnings
When putting Text3Ds, DBResults, and stuff inside functions such as printf, format, SetTimerEx, CallLocalFunction, CallRemoteFunction you might notice you're getting a tag warning.
You're not doing anything wrong!
What you do to get rid of them is you clear the tag - clearing the tag is done by putting an underscore as a tag.
Example:
pawn Code:
new Text3D:t3dTest = Create3DTextLabel( .. ), Text:txTest = TextDrawCreate( .. );

printf( "DEBUG: %d, %d", _:t3dTest, _:txTest );
original link: https://sampforum.blast.hk/showthread.php?tid=216730

Hope this helps.

-FalconX
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)