How to make this dialog?
#2

Код:
    format(pDialog, sizeof(pDialog)), "{08ce1f}Detectiv {ffcc00}-\n{ff0000}Dealer De Droguri {ffcc00}$\n{08ce1f}Baiat Cu Pizza {ffcc00}$$$\n{08ce1f}Sofer De Autobuz {ffcc00}$$$\n{08ce1f}Mecanic {ffcc00}$$$\n{08ce1f}Dealer De Arme {ffcc00}$$\n{08ce1f}Gunoier {ffcc00}$$$\n{08ce1f}Pescar {ffcc00}$$\n{08ce1f}Tirist {ffcc00}$$$\n{08ce1f}Fermier {ffcc00}$$\n{ff0000}Hot De Masini {ffcc00}$$");
        format(pDialog2, sizeof(pDialog2)), "{ff0000}Taietor de iarba {ffcc00}$$\n{ff0000}Vanzator de inghetata {ffcc00}$$$\n{ff0000}Livrator {ffcc00}$$\n{ff0000}Vanzator de hotdogi {ffcc00}$$");
        format(allstring, sizeof(allstring), "%s\n%s", pDialog, pDialog2);
You shouldn't be using two closing brackets at the end of sizeof, in the case of formats anyway.

Replace:
Код:
sizeof(pDialog2))
sizeof(pDialog))
With:
Код:
sizeof(pDialog2)
sizeof(pDialog)
Reply


Messages In This Thread
How to make this dialog? - by Longover - 12.10.2018, 18:45
Re: How to make this dialog? - by Chyakka - 12.10.2018, 19:03
Re: How to make this dialog? - by Dennis12 - 13.10.2018, 09:19

Forum Jump:


Users browsing this thread: 1 Guest(s)