SA-MP Forums Archive
Vip minor problem - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Vip minor problem (/showthread.php?tid=378675)



Vip minor problem - Red_Dragon. - 18.09.2012

I use my own vip system, i have many vip ranks but all are permanent but i want to give as i want like one month or two month or permanent or ever as i want and thanks


Re: Vip minor problem - Red_Dragon. - 18.09.2012

Also, if anybody can make me a Command for this ? i have ZCMD and sccanf2 and whirlpool and streamer and other many things


Re: Vip minor problem - Bingo - 18.09.2012

What help you need?

What you' ev posted is that you are sharing your mind :P, Do you get error ?


Re: Vip minor problem - Red_Dragon. - 18.09.2012

Bump :/


Re: Vip minor problem - Red_Dragon. - 19.09.2012

Bump :/


Re: Vip minor problem - Red_Dragon. - 20.09.2012

Bump, is not spamming i bump every many hours


Re: Vip minor problem - TaLhA XIV - 20.09.2012

Hmm.I never thought about this but maybe make a timer and load it under OnPlayerConnect.Try that and tell me.


Re: Vip minor problem - Red_Dragon. - 20.09.2012

Sorry, But how to make a timer ?


Re: Vip minor problem - doreto - 20.09.2012

There is wiki for things like that also there is hole section for tutorials and timers


Re: Vip minor problem - TaLhA XIV - 20.09.2012

Here is a small example:
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    if (strcmp("/timer", cmdtext, true, 10) == 0)
    {
        SetTimer("blabla",30000,true);
        return 1;
    }
    return 0;
}
forward blabla(playerid);
public blabla(playerid)
{
    SendClientMessage(playerid,-1,"timer exaple");
}
Search for timer tutorials.