Text Label Bug + Video of my house system - 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: Text Label Bug + Video of my house system (
/showthread.php?tid=314798)
Text Label Bug + Video of my house system -
milanosie - 31.01.2012
So, I think its useless to do 2 posts for one subject so don't complain about **WRONG SECTION** etc. please
Now that is said, For the past 2 days I have been making my own dynamic house system.
It is working pretty good, just some small minor bugs left.
One of them is the text label.
Inside the Save File of the house the Name of the owner is placed good, Just Milan_Huizen (my sa-mp name).
But ingame it shows *ilan_Huizen (not really * but a key sign or something)
Since its hard to explain AND I want to show my house system I recorded it.
You can see the bug at 0:39 in the video
Video Link:
http://www.youtube.com/watch?v=RKS8w...ature=*********
If anyone would know the problem?
Re: Text Label Bug + Video of my house system -
iZN - 31.01.2012
Please show some of your codes for text label and other bug so we can search out the problem where it is.
Re: Text Label Bug + Video of my house system -
milanosie - 31.01.2012
pawn Код:
format(file5, sizeof(file5), "realityrp/houses/%d.ini", h);
new string[128];
PlayerInfo[playerid][Housekey] = h;
House[h][hforsale] = 0;
House[h][howner] = PlayerInfo[playerid][Pid];
dini_Set(file5, "hownername", name);
House[h][hownername] = strmid(House[h][hownername], dini_Get(file5,"hownername"), 0, strlen(dini_Get(file5,"hownername")), 255);
format(string, sizeof(string), "Owned House\n Owner: %s",House[h][hownername]);
Update3DTextLabelText(HouseLabel[h], COLOR_BLUE, string );
Re: Text Label Bug + Video of my house system -
milanosie - 31.01.2012
bump
Re: Text Label Bug + Video of my house system -
milanosie - 31.01.2012
bump again
Re: Text Label Bug + Video of my house system -
Unte99 - 31.01.2012
You cam bump after 48 hours.
pawn Код:
House[h][hownername] = dini_Get(file5,"hownername");