Jump to content
  • 0

pomoc Jen admin[RCON]


-FK-hofmiktom

Dotaz

Zdravím potřeboval bych pomoct s tímto mám gamemód a nemám tam svůj AS(adminsystém) tak vše dělám přes RCON-a a potřebuju aby když dám /ak tak mi to dá nekonečno AK-47 ale jen tomu kdo je přihlášen na RCON a ten kdo není a napíše to tomu to napíše "Nejste administrátor"              Předem díky za kladné vyřízení. :)

 

 

PS: kód chci aby vypadal takto ale přidaný tam ta podmínka že musí být admin

 

public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/ak", cmdtext, true, 10) == 0)
{
        GivePlayerWeapon(playerid, 30, 9999999999);
SendClientMessage(playerid, 0xFF9900, "STAV: administrátor - dostal jsi nekonečno AK-47!");
return 1;
}
return 0;
}

Link to comment
Share on other sites

2 odpovědí na tuto otázku

Recommended Posts

  • 0


if (strcmp("/ak", cmdtext, true, 10) == 0)
{
if(!IsPlayerAdmin(playerid)) return SCM(playerid,0xff0000ff,"Niesi admin");
GivePlayerWeapon(playerid, 30, 9999999999);
SendClientMessage(playerid, 0xFF9900, "STAV: administrátor - dostal jsi nekonečno AK-47!");
return 1;
}
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...