14.08.2010, 16:58
Okay, guys, it's me again with another problems xD
1.:
LuxAdmin isn't saving the stats. I tried already to use another LuxAdmin, but it's still there >.<
I have no idea, what do i have to post for a solution, so i use this: xD
Files in "Servername"/pawno/include:
a_npc,a_objects,a_players,a_samp,a_sampdb,a_vehicl es,core,datagram,file,float,dutils,ladmin,ldudb,Di ni,lfuncs,
streamer,string,time,dudb,
LuxAdmin:
And yes:
xD
2.:
There is an thing, i really like:
But if i edit to "true", players without Adminlevel can't chat >.<
Why is that?
I didn't edit anything... please help >.<
1.:
LuxAdmin isn't saving the stats. I tried already to use another LuxAdmin, but it's still there >.<
I have no idea, what do i have to post for a solution, so i use this: xD
Files in "Servername"/pawno/include:
a_npc,a_objects,a_players,a_samp,a_sampdb,a_vehicl es,core,datagram,file,float,dutils,ladmin,ldudb,Di ni,lfuncs,
streamer,string,time,dudb,
LuxAdmin:
Код:
//============================================================================== // Includes //============================================================================== #include <a_samp> #include <ldudb> #include <lfuncs> #include <Dini> #include <dutils>
Код:
#define SaveScore true // Enable/Disable to save Player's Score
2.:
There is an thing, i really like:
Код:
#define ADM_InMSG false // Put 'admin' in all messages sent by administrators (Ex: David(Admin): Welcome...)
Why is that?
Код:
//============================================================================== // Send Admin in front of name //============================================================================== #if ADM_InMSG == true if (AccInfo[playerid][Hide] == 0) { if(AccInfo[playerid][Level] > 0) { new str3[256]; format(str3, 256, "(Admin): %s", text); for(new gz=0;gz<200;gz++) if(IsPlayerConnected(gz)) SendPlayerMessageToPlayer(gz, playerid, str3); else SendPlayerMessageToPlayer(gz, playerid, text); } return 0; } #endif