[İSTEK] Hitman Script
#1

Arkadaşlar bana RPG serverlerinde kullanilan hitman scripti lazim.Mesela
/hit [Hitman ID] [Kurban] [Miktar] tarzinda birşey arıyorum.Yardim edebilirseniz duaciniz olurum
Reply
#2

Ilgiliniyosan yapabilirim
Reply
#3

this is hitman fs

http://www.mediafire.com/?8dc4eckkm62idse

and u want this so +rep
Reply
#4

Code:
#include <a_samp>

#define dcmd(%1,%2,%3) if (!strcmp((%3)[1], #%1, true, (%2)) && ((((%3)[(%2) + 1] == '\0') && (dcmd_%1(playerid, ""))) || (((%3)[(%2) + 1] == ' ') && (dcmd_%1(playerid, (%3)[(%2) + 2]))))) return 1

native sscanf(const data[], const format[], {Float,_}:...);
new hitman[MAX_PLAYERS];
new miktar;
public OnPlayerCommandText(playerid, cmdtext[])
{
	dcmd(hitman, 15, cmdtext);
	return 0;
}

dcmd_hitman(playerid, params[])
{
	new id, str[128];
	if(sscanf(params, "ii", id, miktar)) return SendClientMessage(playerid, -1, "KULLANIM: /hitman [id] [miktar]");
	format(str, sizeof(str), "%d$", miktar);
	new Text3D:label = Create3DTextLabel(str, 0x008080FF, 100.0, 100.0, 100.0, 100.0, 0);
    Attach3DTextLabelToPlayer(label, id, 0.0, 0.0, 0.7);
    hitman[id] = 1;
	return 1;
}

public OnPlayerDeath(playerid, killerid, reason)
{
	if(hitman[playerid] == 1)
	{
		GivePlayerMoney(killerid, miktar);
	}
	return 1;
}
Kod bu. Ayrıca scriptin зalışması iзin Sscanf plugini lazım. Onu buradan indirebilirsin. Script bana ait değildir.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)