GameText Not showing correctly
#1

hey guys i have a problem

i have this
pawn Код:
if (strcmp("/server", cmdtext, true, 10) == 0)
    {
        GameTextForPlayer(playerid, "~w~System: ~n~~y~/build /betatest /system /credits /buildinfo ", 9000,3);
        return 1;
    }

and only this part shows

System:
build /betatest /system
Reply
#2

I think there's a limit to how much text you can display in a GameText. You'll need to shorten the string.
Reply
#3

i had longer text and it worked fine

Reply
#4

Quote:
Originally Posted by lol2112
I think there's a limit to how much text you can display in a GameText. You'll need to shorten the string.
what he said ^^ but you can make 2 gametext
GameTextForPlayer(playerid, "~w~System: ~n~~y~/build /betatest ", 9000,3);
GameTextForPlayer(playerid, "~w~System: ~n~~y~/system /credits /buildinfo ", 9000,3);
Reply
#5

i tried that before

it doesnt work

just makes it worst
Reply
#6


pawn Код:
if (strcmp("/server", cmdtext, true, 10) == 0)
    {
        GameTextForPlayer(playerid, "~w~System: ~n~~y~/build /betatest /system~n~/credits /buildinfo ", 9000,3);
        return 1;
    }
Add another Line break? may be because of too much text on one line...
Reply
#7

Try what Miokie said. And you can't have two gametexts at one time. Maybe fiddle with the styles?
Reply
#8

no i tried all those but it doesnt work :S

i had something longer then that and it works
Reply
#9

pawn Код:
if (strcmp("/server", cmdtext, true) == 0)
    {
        GameTextForPlayer(playerid, "~w~System: ~n~~y~/build /betatest /system~n~/credits /buildinfo ", 9000,3);
        return 1;
    }
Reply
#10

nope didnt work
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)