21.04.2013, 10:05
Quote:
hValue... Let's me think of a house.. Isn't the thing you try to do something like, mValue or something?
|
However, I have two other warning, always "tag mismatch".
Код:
C: \ Documents and Settings \ User \ Desktop \ GM \ LSRP 1.0 Gaming EN \ Europe Nation Gaming Roleplay \ gamemodes \ enrp.pwn (61616): warning 213: tag mismatch C: \ Documents and Settings \ User \ Desktop \ GM \ LSRP 1.0 Gaming EN \ Europe Nation Gaming Roleplay \ gamemodes \ enrp.pwn (61616): warning 213: tag mismatch
PHP код:
for(new h = 0; h < sizeof(BizzInfo); h++)
{
if(PlayerToPoint(2.0, i, BizzInfo[h][bEntranceX], BizzInfo[h][bEntranceY], BizzInfo[h][bEntranceZ]))
{
if(BizzInfo[h][bOwned] == 1)
{
format(string, sizeof(string), "~b~SHOP:~w~%s~b~~n~OWNER:~w~%s~n~~b~VALUE:~w~ $%d",BizzInfo[h][bMessage],SBizzInfo[h][bOwner],SBizzInfo[h][bEntranceCost]); // Line 61616, warning.
}
else
{
format(string, sizeof(string), "~w~%s~w~~n~This Business is for sale~n~Cost: ~g~$%d ~w~Level : %d ~n~~b~ /buybiz ~w~to buy this Business",BizzInfo[h][bMessage],BizzInfo[h][bBuyPrice],BizzInfo[h][bLevelNeeded]);
}
InfoBoxForPlayer(i, string);
SendDebugMessage("CustomPickups, BizzInfo");
}
}