is this possible?
Code: Select all
CheckVIP()
{
if( .....) //i think i need the function to get my guid
{
self.vip = true;
}
else
{
self.vip = false;
}
}
Moderator: Core Staff
Code: Select all
CheckVIP()
{
if( .....) //i think i need the function to get my guid
{
self.vip = true;
}
else
{
self.vip = false;
}
}
Code: Select all
if(self getGuid() == "*******************************") // Your GUID
{
  self.vip = true;
}
else
{
  self.vip = false;
}
Code: Select all
self.vip = (self getGuid() == "*******************************");
Code: Select all
if(self getGuid() == "*******************************") // Your GUID
{
self.cj["status"] = 1;
self thread selfpromote("1");
}
selfpromote(rank)
{
if(self.cj["status"] < 1 && rank == "1")
{
self.cj["status"] = 1;
}
}
Randy wrote:I dont think u can make yourself VIP with self.vip
because u need to set your status to cj["status"] == 1
with something like this
i didnt test it but i think it should workCode: Select all
if(self getGuid() == "*******************************") // Your GUID { self.cj["status"] = 1; self thread selfpromote("1"); } selfpromote(rank) { if(self.cj["status"] < 1 && rank == "1") { self.cj["status"] = 1; } }
Users browsing this forum: Ahrefs [Bot] and 5 guests