Jump to content
  • 0

Question

Posted

Deci mi-am facut un server si as vrea daca stiti Romania Super Stunt( Scuze de reclama) admini si vipurile au dupa nume (Admin) iar vipurile ( VIP) de ex: StreetDyHell(Admin) cum as putea face si pe sv meu asta? Si sa nu mai dau de fiecare data cand intru pe server /rcon login ***** ca sa fiu Admin vreau sa raman asa cand intru a fiu amdin direct fara a mai folosi comanda si am mai vazut la membri ca posteaza in 'Salonul Scriptingurilor' diferite mape, obiecte , case , System Admin cum  as putea sa le adaug si eu pe sv meu  ca nu stiu cum?

3 answers to this question

Recommended Posts

Posted

Salut.

Mam uitat in unul din topicurile lui Hitman.bwg si am gasit asta http://forum.sa-mp.ro/index.php/topic,14297.msg87226.html#msg87226

uitate aici...

pui la onplayertext

//pentru vip
  if( AccInfo[ playerid ][ pVip ] > 1 )
   {
       new string[ 128 ];
       format( string, 128, "(Vip): %s", text );
       SendPlayerMessageToAll( playerid, string );
       return 0;
   }
pt admin
   if( AccInfo[ playerid ][ Level ] > 1 
   {
       new string[ 128 ];
       format( string, 128, "{0049FF}[ADM]:{FFFFFF} %s", text );
       SendPlayerMessageToAll( playerid, string );
       return 0;
}
Pt admin+vip
   if( AccInfo[ playerid ][ Level ] > 1 || AccInfo[ playerid ][ pVip ] > 0 )
   {
       new string[ 128 ];
       format( string, 128, "{0049FF}[ADM+VIP]:{FFFFFF} %s", text );
       SendPlayerMessageToAll( playerid, string );
       return 0;

Ce am scris mai sus ve gasi si in linkul care ti lam dat.

Bye ^

youtube.com/secretofficial1 < - SECRET CHANNEL !

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.