Jump to content
  • 0

Help with Vip Icon


Motoharo

Question


  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  14
  • Reputation:   1
  • Joined:  05/18/19
  • Last Seen:  

-	script	Vip_Icon	-,{

OnPCLoginEvent:
	bonus_script_clear EFST_VIPSTATE;
	if(vip_status(1)) {
		set .@timer, vip_status(VIP_STATUS_EXPIRE);
		
		bonus_script "{}",3600,0,0,EFST_VIPSTATE;

		dispbottom "--- VIP ----";
		dispbottom "==========================";
		dispbottom "Jogador VIP";
		dispbottom "Duração do VIP restante :"+callfunc("Time2Str",.@timer);
		dispbottom "==========================";
		end;
	}
}

How to make the vip icon have the same duration as the player's VIP and keep counting even offline?

image.png.c9ebef0b2ff27c3397333c817644e560.png

Edited by Motoharo
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  103
  • Reputation:   17
  • Joined:  07/28/12
  • Last Seen:  

-	script	Vip_Icon	-,{

OnPCLoginEvent:
	if(vip_status(1)) {
		set .@a, vip_status(2) - gettimetick(2);
		bonus_script "{}",.@a,8,0,EFST_VIPSTATE;
		dispbottom "--- VIP ----";
		dispbottom "==========================";
		dispbottom "VIP Player";
		dispbottom "Remaining VIP duration :"+callfunc("Time2Str",vip_status(2));
		dispbottom "==========================";
		end;
	}
}

try with this

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  30
  • Topics Per Day:  0.01
  • Content Count:  83
  • Reputation:   0
  • Joined:  01/30/12
  • Last Seen:  

On 9/20/2023 at 10:56 AM, Angeluz said:
-	script	Vip_Icon	-,{

OnPCLoginEvent:
	if(vip_status(1)) {
		set .@a, vip_status(2) - gettimetick(2);
		bonus_script "{}",.@a,8,0,EFST_VIPSTATE;
		dispbottom "--- VIP ----";
		dispbottom "==========================";
		dispbottom "VIP Player";
		dispbottom "Remaining VIP duration :"+callfunc("Time2Str",vip_status(2));
		dispbottom "==========================";
		end;
	}
}

try with this

Hi, I've try this script but instead of VIP status the one it show is for the Endure status and Icon

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...