Detaljan opis problema:neznam zasto mi ne pokazuje pare u banci!!??
Dio skripte:
/*
Filterscript generated using Zamaroht's TextDraw Editor Version 1.0.
Designed for SA-MP 0.3a.
Time and Date: 2012-6-24 @ 16:11:37
Instructions:
1- Compile this file using the compiler provided with the sa-mp server package.
2- Copy the .amx file to the filterscripts directory.
3- Add the filterscripts in the server.cfg file (more info here:
http://wiki.sa-mp.com/wiki/Server.cfg)
4- Run the server!
Disclaimer:
You have full rights over this file. You can distribute it, modify it, and
change it as much as you want, without having to give any special credits.
*/
#include
new Text:pare0;
forward Cosak(playerid);
new CosakTimer;
public OnFilterScriptInit()
{
print("Textdraw file generated by");
print(" Zamaroht's textdraw editor was loaded.");
CosakTimer=SetTimerEx("Cosak", 800,1,"i");
// Create the textdraws:
pare0 = TextDrawCreate(498.000000, 115.000000, "$00000000");
TextDrawBackgroundColor(pare0, 255);
TextDrawFont(pare0, 3);
TextDrawLetterSize(pare0, 0.589999, 2.399999);
TextDrawColor(pare0, -1);
TextDrawSetOutline(pare0, 1);
TextDrawSetProportional(pare0, 1);
for(new i; i < MAX_PLAYERS; i ++)
{
if(IsPlayerConnected(i))
{
TextDrawShowForPlayer(i, pare0);
}
}
return 1;
}
public OnFilterScriptExit()
{
TextDrawHideForAll(pare0);
TextDrawDestroy(pare0);
return 1;
}
public OnPlayerConnect(playerid)
{
TextDrawShowForPlayer(playerid, pare0);
return 1;
}Neke slike/video za lakse dobivanje pomoci(neobavezno): eh eto to sam napravio e sada...kako sada dalje znaci zelim da mi pokazuje iznos para u banci.... molm vas pomoc
