05.02.2014, 03:20
I don't know how to explain this but I'll try my best.
I am trying to make a Joining/Parting text draw which will show the last four players either joined or parted. When player connects I want it to add latest in the bottom. Like this
JOIN: Alex Sanchez
PART: Leo Messi
JOIN: Nemyar
JOIN: Xavi
Now if Renaldo comes on, it shows "JOIN: Renoldo" in place of "JOIN: Xavi" and "JOIN: Xavi will slide up and so will Nemyar and all above it. But "JOIN: Alex Sahchez will just disappear and in place of that will come "PART: Leo Messi"
I hope it's understandable. Here's what I've got so far.
OnGameModeInit();
Don't know what to do after that. Please help me get going!
I am trying to make a Joining/Parting text draw which will show the last four players either joined or parted. When player connects I want it to add latest in the bottom. Like this
JOIN: Alex Sanchez
PART: Leo Messi
JOIN: Nemyar
JOIN: Xavi
Now if Renaldo comes on, it shows "JOIN: Renoldo" in place of "JOIN: Xavi" and "JOIN: Xavi will slide up and so will Nemyar and all above it. But "JOIN: Alex Sahchez will just disappear and in place of that will come "PART: Leo Messi"
I hope it's understandable. Here's what I've got so far.
OnGameModeInit();
pawn Код:
JoinPart[0] = TextDrawCreate(550.0,352.0,"Empty1");
JoinPart[1] = TextDrawCreate(550.0,368.0,"Empty2");
JoinPart[2] = TextDrawCreate(550.0,384.0,"Empty3");
JoinPart[3] = TextDrawCreate(550.0,400.0,"Empty4");
for(new i = 0; i < 4; i++)
{
TextDrawTextSize(JoinPart[i],0.5, 1.0);
TextDrawColor(JoinPart[i],0xFFFFFFFF);
TextDrawAlignment(JoinPart[i],1);
TextDrawFont(JoinPart[i],2);
TextDrawSetOutline(JoinPart[i],1);
TextDrawSetProportional(JoinPart[i],1);
TextDrawSetShadow(JoinPart[i],1);
}