Na, ha jól értem,hogy mit kértél itt a script:
#include <a_samp>
#include <zcmd>
#include <sscanf>
#define Munka_Nincs 0
#define Munka_Bergyilkos 1
#define COLOR_GREEN 0x33AA33AA
#define COLOR_RED 0xAA3333AA
CMD:duty(playerid, params[])
{
if(GetPVarInt(playerid, \"Bergyilkos\"))
{
new name[MAX_PLAYER_NAME];
new string[128];
GetPlayerName(playerid, name, MAX_PLAYER_NAME);
SetPlayerSkin(playerid, 186);
format(string,sizeof(string),\"%s!Bérgyilkos szolgálatban!\", name);
SendClientMessageToAll(COLOR_RED, string);
}
else
{
SendClientMessage(playerid, COLOR_RED, \"Nem vagy bérgyilkos!\");
}
return 1;
}
CMD:hitman(playerid, params[])
{
SetPVarInt(playerid, \"Bergyilkos\", Munka_Bergyilkos);
SendClientMessageToAll(COLOR_GREEN, \"Vigyázat!Egy bérgyilkos járkál az utcán!\");
return 1;
}
public OnPlayerDeath(playerid, killerid, reason)
{
new name[MAX_PLAYER_NAME];
new name2[MAX_PLAYER_NAME];
new string[128];
GetPlayerName(playerid, name, MAX_PLAYER_NAME);
format(string,sizeof(string), \"%s megölte %s -t, Feladat teljesítve!\", name,name2);
SendClientMessageToAll(0xAFAFAFAA, string);
GivePlayerMoney(killerid, 5000);
return 1;
}
Egyébként tényleg fura!