SA-MP Forums Archive
Help making this textdraw as string - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Help making this textdraw as string (/showthread.php?tid=323865)



Help making this textdraw as string - Face9000 - 07.03.2012

Hello,i've this textdraw for medical fees. (when a player die it will pay a random ammount of money):

pawn Код:
MedFeesTxd0 = TextDrawCreate(40.000000, 207.000000, "Medical Fees");
    TextDrawBackgroundColor(MedFeesTxd0, 255);
    TextDrawFont(MedFeesTxd0, 3);
    TextDrawLetterSize(MedFeesTxd0, 0.520000, 1.700000);
    TextDrawColor(MedFeesTxd0, -16776961);
    TextDrawSetOutline(MedFeesTxd0, 1);
    TextDrawSetProportional(MedFeesTxd0, 1);

    MedFeesTxd1 = TextDrawCreate(12.000000, 229.000000, "The hospital has ordered you to pay taxes.");
    TextDrawBackgroundColor(MedFeesTxd1, 255);
    TextDrawFont(MedFeesTxd1, 1);
    TextDrawLetterSize(MedFeesTxd1, 0.290000, 2.000000);
    TextDrawColor(MedFeesTxd1, -1);
    TextDrawSetOutline(MedFeesTxd1, 0);
    TextDrawSetProportional(MedFeesTxd1, 1);
    TextDrawSetShadow(MedFeesTxd1, 1);
    TextDrawUseBox(MedFeesTxd1, 1);
    TextDrawBoxColor(MedFeesTxd1, 255);
    TextDrawTextSize(MedFeesTxd1, 223.000000, 0.000000);

    MedFeesTxd2 = TextDrawCreate(12.000000, 251.000000, "0$ medical fees paid. Thank you.");
    TextDrawBackgroundColor(MedFeesTxd2, 255);
    TextDrawFont(MedFeesTxd2, 1);
    TextDrawLetterSize(MedFeesTxd2, 0.400000, 2.000000);
    TextDrawColor(MedFeesTxd2, -1);
    TextDrawSetOutline(MedFeesTxd2, 1);
    TextDrawSetProportional(MedFeesTxd2, 1);
    TextDrawUseBox(MedFeesTxd2, 1);
    TextDrawBoxColor(MedFeesTxd2, 255);
    TextDrawTextSize(MedFeesTxd2, 244.000000, 0.000000);
This is the random ammount:

pawn Код:
new mrand =random(35000);
    new string[128];
    format(string,sizeof(string),"The hospital has charged you $%d for their medical services.",mrand);
    SendClientMessage(playerid,red,string);
    GivePlayerMoney(playerid,-mrand);
The problem is: How to show the random ammount of money in this textdraw:

pawn Код:
MedFeesTxd2 = TextDrawCreate(12.000000, 251.000000, "0$ medical fees paid. Thank you.");
..? Thanks.


Re : Help making this textdraw as string - Soumi - 07.03.2012

TextDrawSetString


Re: Re : Help making this textdraw as string - Face9000 - 07.03.2012

Quote:
Originally Posted by Soumi
Посмотреть сообщение
Ah right..thanks