04.01.2009, 05:23
Quote:
Originally Posted by Zezombia
Could I see that code please? It's probably something to do with creating the file, not checking it.
|
but here you go:
pawn Code:
/*============================================
Admin Application IN-GAME FilterScript! |
Made by Rafay! |
If you use it, Please give me some credits |
|
==============================================*/
//[Includes]
#include <a_samp>
#include <dudb>
#include <dini>
#pragma unused ret_memcpy
//[Defines]
#define green 0x33AA33AA
#define red 0xAA3333AA
#define blue 0x0000BBAA
public OnFilterScriptInit()
{
print("\n--------------------------------------");
print(" Admin Application IN-GAME Loaded!");
print("--------------------------------------\n");
return 1;
}
public OnPlayerConnect(playerid)
{
new file[256], pname[MAX_PLAYER_NAME];
GetPlayerName(playerid, pname, sizeof(pname));
format(file, sizeof(file), "/applies/%s.ini", pname);
if(!dini_Exists(file)) return SendClientMessage(playerid, red, "You have already made your application!");
if (!fexist(file)) return SendClientMessage(playerid,green,"Wanna apply for Administrator ? Type /aa for a IN-GAME Admin Apply!!");
return 1;
}