01.03.2016, 16:36
Oii povo! Olha eu de novo aqui >.<
Bom, agora, preciso de uma ajuda urgente.. Estou a criar um servidor de Roleplay. Vai demorar muito pra lanзar pois ainda tenho que terminar de estudar a wiki, assim, criando o servidor com os meus conceitos e conhecimentos. Hoje, quis criar 2 textdraws. Fiz tudo certinho, como na wiki dizia, sу que, no servidor sу mostrava um....
O que devo fazer para aparecer os 2 textdraws??
Bom, agora, preciso de uma ajuda urgente.. Estou a criar um servidor de Roleplay. Vai demorar muito pra lanзar pois ainda tenho que terminar de estudar a wiki, assim, criando o servidor com os meus conceitos e conhecimentos. Hoje, quis criar 2 textdraws. Fiz tudo certinho, como na wiki dizia, sу que, no servidor sу mostrava um....
PHP код:
public OnGameModeInit()
{
TDEditor_TD[0] = TextDrawCreate(41.199916, 293.039733, "San Francisco");
TextDrawLetterSize(TDEditor_TD[0], 0.455199, 1.599997);
TextDrawAlignment(TDEditor_TD[0], 1);
TextDrawColor(TDEditor_TD[0], -1);
TextDrawSetShadow(TDEditor_TD[0], 2);
TextDrawSetOutline(TDEditor_TD[0], 0);
TextDrawBackgroundColor(TDEditor_TD[0], 255);
TextDrawFont(TDEditor_TD[0], 3);
TextDrawSetProportional(TDEditor_TD[0], 1);
TextDrawSetShadow(TDEditor_TD[0], 2);
TDEditor_TD[1] = TextDrawCreate(66.000022, 322.906677, "ROLEPLAY");
TextDrawLetterSize(TDEditor_TD[1], 0.345598, 1.838930);
TextDrawAlignment(TDEditor_TD[1], 1);
TextDrawColor(TDEditor_TD[1], -16776961);
TextDrawSetShadow(TDEditor_TD[1], 2);
TextDrawSetOutline(TDEditor_TD[1], 0);
TextDrawBackgroundColor(TDEditor_TD[1], 255);
TextDrawFont(TDEditor_TD[1], 3);
TextDrawSetProportional(TDEditor_TD[1], 1);
TextDrawSetShadow(TDEditor_TD[1], 2);
SetGameModeText("SF:RP");
AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
return 1;
}
public OnPlayerConnect(playerid)
{
TextDrawShowForAll(playerid, TDEditor_TD);
return 1;
}