How Do I Create Registration Script With DINI? - 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: How Do I Create Registration Script With DINI? (
/showthread.php?tid=267312)
How Do I Create Registration Script Without DINI? -
HayZatic - 08.07.2011
How Do I Create Admin Script Without DINI? Does Anyone Have a Tutorial For That, I want it to be an up to date script
Re: How Do I Create Registration Script With DINI? -
Jack_Leslie - 08.07.2011
There's heaps in the tutorial section.
Re: How Do I Create Registration Script With DINI? -
HayZatic - 08.07.2011
Quote:
Originally Posted by Jack_Leslie
There's heaps in the tutorial section.
|
Yea Um, i cant find one?
Re: How Do I Create Registration Script With DINI? -
Jack_Leslie - 08.07.2011
http://forum.sa-mp.com/showthread.ph...=register+dini
Then you can make Admin commands like so:
Код:
if(strcmp(cmd,"/lol",true) == 0)
{
if(PlayerInfo[playerid][pAdminLevel] <= 0)
{
SendClientMessage(playerid,color,"You are not an Admin!");
return 1;
}
else {
// admin command
return 1;
}
}
Re: How Do I Create Registration Script With DINI? -
HayZatic - 08.07.2011
Quote:
Originally Posted by Jack_Leslie
http://forum.sa-mp.com/showthread.ph...=register+dini
Then you can make Admin commands like so:
Код:
if(strcmp(cmd,"/lol",true) == 0)
{
if(PlayerInfo[playerid][pAdminLevel] <= 0)
{
SendClientMessage(playerid,color,"You are not an Admin!");
return 1;
}
else {
// admin command
return 1;
}
}
|
Any Tutorials on how to make it without
Re: How Do I Create Registration Script With DINI? -
Jack_Leslie - 08.07.2011
Quote:
Originally Posted by HayZatic
Any Tutorials on how to make it without
|
Make what without what?
Re: How Do I Create Registration Script With DINI? -
Lorenc_ - 08.07.2011
How the hell is dini a up to date file writer...
Re: How Do I Create Registration Script With DINI? -
HayZatic - 08.07.2011
Quote:
Originally Posted by Lorenc_
How the hell is dini a up to date file writer...
|
I Screwed Up I Meant How do i make it WITHOUT Dini.
Re: How Do I Create Registration Script With DINI? -
Jack_Leslie - 08.07.2011
Quote:
Originally Posted by HayZatic
I Screwed Up I Meant How do i make it WITHOUT Dini.
|
http://forum.sa-mp.com/search.php?searchid=2615589
http://forum.sa-mp.com/showthread.ph...t=registration