[DUV] Dinheiro Duplicando
#3

Stock's
Код:
stock GivePlayerReal(playerid, real)
{
	TextDrawHideForPlayer(playerid, TReal[playerid]);
	Real[playerid] += real;
	new String[256];
	format(String, 256, "~g~$~w~:~w~%d", Real[playerid]);
	TReal[playerid] = TextDrawCreate(499.600,101.0000,String);
	TextDrawColor(TReal[playerid], 0x33AA33AA);
	TextDrawLetterSize(TReal[playerid], 0.575, 2.1);
	TextDrawFont(TReal[playerid], 3);
	TextDrawBackgroundColor(TReal[playerid], 0x00000AA);
	TextDrawSetOutline(TReal[playerid], 2);
	TextDrawShowForPlayer(playerid,TReal[playerid]);
	if(Real[playerid] < 0)
	{
		TextDrawHideForPlayer(playerid, TReal[playerid]);
	Real[playerid] += real;
	format(String, 256, "~r~$:~r~%d", Real[playerid]);
	TReal[playerid] = TextDrawCreate(499.600,101.0000,String);
	TextDrawColor(TReal[playerid], 0x33AA33AA);
	TextDrawLetterSize(TReal[playerid], 0.575, 2.1);
	TextDrawFont(TReal[playerid], 3);
	TextDrawBackgroundColor(TReal[playerid], 0x00000AA);
	TextDrawSetOutline(TReal[playerid], 2);
	TextDrawShowForPlayer(playerid,TReal[playerid]);
	}
	return 1;
}

stock GetPlayerReal(playerid)
{
	return Real[playerid];
}

stock ResetPlayerReal(playerid)
{
	Real[playerid] = 0;
	return Real[playerid];
}
Apуs registrar:
Код:
Real[playerid] = GetPlayerReal(playerid);
Apуs logar ele pega quando de grana tinha
Код:
GivePlayerReal(playerid, dini_Int(file,"Real"));
Apуs disconectar a grana salva na conta
Код:
new nome[24];
	new String[128];
	GetPlayerName(playerid, nome,24);
	format(String,sizeof(String),"%s.ini",nome);
	dini_IntSet(String,"Real", GetPlayerReal(playerid));
Reply


Messages In This Thread
[DUV] Dinheiro Duplicando - by Vanderson - 27.01.2011, 11:04
Re: [DUV] Dinheiro Duplicando - by gabriel_ - 27.01.2011, 11:07
Re: [DUV] Dinheiro Duplicando - by Vanderson - 27.01.2011, 11:12
Re: [DUV] Dinheiro Duplicando - by Macintosh - 27.01.2011, 14:20
Re: [DUV] Dinheiro Duplicando - by Vanderson - 27.01.2011, 16:16
Re: [DUV] Dinheiro Duplicando - by Macintosh - 27.01.2011, 17:35
Re: [DUV] Dinheiro Duplicando - by Vanderson - 27.01.2011, 18:03
Re: [DUV] Dinheiro Duplicando - by pr0bscur3 - 27.01.2011, 18:17

Forum Jump:


Users browsing this thread: 1 Guest(s)