Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Request] Remove button "Upgrade trial account"

Newbie Spellweaver
Joined
Jun 28, 2016
Messages
17
Reaction score
0
help me please...
I want to remove this button "Upgrade trial account"
Thank you !

RZVhaRv - [Request] Remove button "Upgrade trial  account" - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
☆Dying Dawn☆
Joined
Jan 30, 2012
Messages
971
Reaction score
727
Re: Remove button "Upgrade trial account"

FrontendWarZ
Code:
if(gUserProfile.IsTrialAccount())
	{
		gfxMovie.SetVariable("_root.api.Main.SurvivorsAnim.Survivors.BtnUpgtrial.visible", [COLOR="#FF0000"][B]true[/B][/COLOR]);
	}
to
Code:
if(gUserProfile.IsTrialAccount())
	{
		gfxMovie.SetVariable("_root.api.Main.SurvivorsAnim.Survivors.BtnUpgtrial.visible", [COLOR="#FF0000"][B]false[/B][/COLOR]);
	}
or removed from flash as you want
 
Upvote 0
Newbie Spellweaver
Joined
Jun 28, 2016
Messages
17
Reaction score
0
Re: Remove button "Upgrade trial account"

Thank you very very much
Bombillo
 
Upvote 0
Back
Top