01.02.2015, 20:14
Hello, I hope u will understand me
My command
Hope you understood.
Код HTML:
---------------------------------------------------------------------------------------------------------------- | My Screen | | | | I want the text to show here and if there | Any maximum word make a new line | Not to compelete to the end of the | Screen like this | | | | | | | | ---------------------------------------------------------------------------------------------------------------
PHP код:
new Text:osm;
PHP код:
CMD:osm(playerid, params[])
{
new msg[128];
new string[128];
if(PlayerInfo[playerid][pAdmin] < 2) return SendClientMessage(playerid, COLOR_RED, "Command not found on the server! /help");
if(sscanf(params,"s[128]",msg)) return SendClientMessage(playerid, COLOR_RED, "Show a message for all players on screen: /osm [Message]");
osm = TextDrawCreate(187.000,131.00,msg);
TextDrawFont(osm, 3);
TextDrawShowForAll(osm);
SetTimer("hideText",2000,false);
return 1;
}
public hideText()
{
TextDrawHideForAll(osm);
return 1;
}