SA-MP Forums Archive
System donate (password / key) - 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: System donate (password / key) (/showthread.php?tid=579345)



System donate (password / key) - JoshNudock - 26.06.2015

Does anyone know where I can find a 'donate' system, one needs a serial (password/key) to get something ..


Re: System donate (password / key) - Prokill911 - 26.06.2015

It's called

"Search" button...


Re: System donate (password / key) - JoshNudock - 26.06.2015

I've researched, I found some, but are not functional .. '.'


Re: System donate (password / key) - J0sh... - 26.06.2015

What do you want?

I don't understand.


Re: System donate (password / key) - JoshNudock - 26.06.2015

Quote:
Originally Posted by Jamester
Посмотреть сообщение
What do you want?

I don't understand.
System donate password to gain their benefit. A base to be improved.


Re: System donate (password / key) - J0sh... - 26.06.2015

You want a password for Donator rank?


Re: System donate (password / key) - JoshNudock - 26.06.2015

Quote:
Originally Posted by Jamester
Посмотреть сообщение
You want a password for Donator rank?

Yes, example, I want to win my VIP, but has no online administrator, I type a command (example) and the serial, and get my VIP password.



Re: System donate (password / key) - Karan007 - 26.06.2015

It's quite simple. Here is a simple code created by me:-

PHP код:
CMD:vl/*PASS HERE*/(playerid,params[])
{
 if(
GetPVarInt(playerid"VIP") != 0) return SendClientMessage(playerid, -1"You are already logged in!");
 
SetPVarInt(playerid"VIP",1);
 
SendClientMessage(playerid, -1"You've successfully logged in to receive your VIP status!");
 
/*Place your code to receive the VIP level as example VIPLevel[playerid] = 1; */
 
return 1;

Here is the code. Make a change in it.


Re: System donate (password / key) - justice96 - 26.06.2015

Quote:
Originally Posted by JoshNudock
Посмотреть сообщение
Does anyone know where I can find a 'donate' system, one needs a serial (password/key) to get something ..
Hm, did you mean "redeem code" to verify donate system?


Re: System donate (password / key) - J0sh... - 26.06.2015

Quote:
Originally Posted by karan007
Посмотреть сообщение
It's quite simple. Here is a simple code created by me:-

PHP код:
CMD:vl/*PASS HERE*/(playerid,params[])
{
 if(
GetPVarInt(playerid"VIP") != 0) return SendClientMessage(playerid, -1"You are already logged in!");
 
SetPVarInt(playerid"VIP",1);
 
SendClientMessage(playerid, -1"You've successfully logged in to receive your VIP status!");
 
/*Place your code to receive the VIP level as example VIPLevel[playerid] = 1; */
 
return 1;

Here is the code. Make a change in it.
That is soooo bad. Anyone can get it then. @OP Use a random number generator or something