[Need Help] Problem with this ...
#1

Hi,
i've got this problem.
what is problem?
Код:
format(hstring, sizeof(hstring), "Faction: %s | Rank: %d | Division: %s | Family: %s | Rank: %d | House 1: %s | House 2: %s", RPFNEx(playerid), PlayerInfo[playerid][pFacRank], RPFDN(playerid), RPFaN(playerid), PlayerInfo[playerid][pFamRank], RPHK(playerid), RPVIPHK(playerid));
Error code is 035 (error 075: input line too long (after substitutions))

and also what is Error 075 (error 035: argument type mismatch (argument 3))?

Thanks.
Reply
#2

pawn Код:
format(hstring, sizeof(hstring), "Faction: %s | Rank: %d | Division: %s | Family: %s | Rank: %d | House 1: %s | House 2: %s", RPFNEx(playerid), PlayerInfo[playerid][pFacRank], RPFDN(playerid)
, RPFaN(playerid), PlayerInfo[playerid][pFamRank], RPHK(playerid), RPVIPHK(playerid));
Reply
#3

Wow thanks.
and how about second one?
Reply
#4

Sorry for Spam but i have to refuse this problem as soon as possible ...
is there anybody to resolve this?
Reply
#5

Please HELP.
{sry for spam again but it's too emergency fo' me}
Reply
#6

Thread bumping is allowed only every 24 hours. Have patience.
Reply
#7

give me your error lines and the lines like:
error (3030)
Line 3030 ->
Reply
#8

Код:
			format(hstring, sizeof(hstring), "Business 1: %s (ID: %s) | Business 2: %s (ID: %s) | Vehicle 1: %s (ID: %d) | Vehicle 2: %s (ID: %d) | Vehicle 3: %s (ID: %d)", RBT(PlayerInfo[playerid][pBiz]), RPBK(playerid), RBT(PlayerInfo[playerid][pVBiz]), RPVIPBK(playerid), RVN(GetVehicleModel(PlayerInfo[playerid][pVeh])), PlayerInfo[playerid][pVeh], RVN(GetVehicleModel(PlayerInfo[playerid][pVVeh])), PlayerInfo[playerid][pVVeh], RVN(GetVehicleModel(PlayerInfo[playerid][pBVeh])), PlayerInfo[playerid][pBVeh]);
            ShowPlayerDialog(playerid, 696969, hstring, "Ok", "Cancel"); /////// Error Line
	    }
    }
    return 1;
(43439) : error 035: argument type mismatch (argument 3)
Reply
#9

I think this will be work
pawn Код:
new hstring[512];
format(hstring, sizeof(hstring), "Business 1: %s (ID: %s) | Business 2: %s (ID: %s) | Vehicle 1: %s (ID: %d) | Vehicle 2: %s (ID: %d) | Vehicle 3: %s (ID: %d)", RBT(PlayerInfo[playerid][pBiz]), RPBK(playerid), RBT(PlayerInfo[playerid][pVBiz]), RPVIPBK(playerid), RVN(GetVehicleModel(PlayerInfo[playerid][pVeh])), PlayerInfo[playerid][pVeh]
, RVN(GetVehicleModel(PlayerInfo[playerid][pVVeh])), PlayerInfo[playerid][pVVeh], RVN(GetVehicleModel(PlayerInfo[playerid][pBVeh])), PlayerInfo[playerid][pBVeh]);
ShowPlayerDialog(playerid, 696969, hstring, "Ok", "Cancel"); /////// Error Line
Reply
#10

Oh,
This
pawn Код:
ShowPlayerDialog(playerid, 696969,DIALOG_STYLE_MSGBOX,"Stats",hstring,"Ok","Cancel");
I'm sorry. i dont Attention
you forget to add style
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)