Making admin 3d label and saving stats
#1

I want to have a label over the admins name and the level they are on. I also want others to beable to see it

I was wondering if someone could give me filterscript for this , I am using the grandlarc gamemode and the ladmin filterscript, also which one would i put the code in.

Thanks For anyone who helps (kinda new to this)

also i want the stats to show up under the tab thingy, it shows up in /stats. i want to to update on there too
Reply
#2

up of gamemode under #include <a_samp>
Code:
new Text3D:label2[MAX_PLAYERS];
under on player disconnect
Code:
Delete3DTextLabel(label2[playerid]);
Code:
	if(strcmp(cmdtext, "/admin_on", true) == 0) {
 		if(IsPlayerAdmin(playerid))
  	label2[playerid] = Create3DTextLabel(">>>ADMIN<<<",0xEB000FFF,30.0,40.0,50.0,40.0,0);
  	 	Attach3DTextLabelToPlayer(label2[playerid], playerid, 0.0, 0.0, 0.7);
  	return 1;
 	}
	if(strcmp(cmdtext, "/admin_off", true) == 0) {
 		if(IsPlayerAdmin(playerid))
    Delete3DTextLabel(label2[playerid]);
  	return 1;
 	}
this add up of a name >>>ADMIN<<<
Reply
#3

Good Jumbo
I am Omar Samp
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)