Author Topic: help  (Read 1919 times)

0 Members and 1 Guest are viewing this topic.

Offline abdulfussy

  • Street Thug
  • *
  • Posts: 13
  • Trust No One
    • View Profile
help
« on: January 23, 2013, 03:52:24 pm »
i wnat to ask how to make server name under screen ingame


Offline sseebbyy

  • VC:MP Veteran
  • *****
  • Posts: 774
  • Immortal VC:MP Player
    • View Profile
    • Zombie Invasion => Server Forum [DEAD PROJECT]
Re: help
« Reply #1 on: January 23, 2013, 04:13:34 pm »
I think you are talking about GameTextForAllBottom(const string[]); function.

If you want to be your server name seen by all players, I will suggest you to add the function at "OnPlayerSpawn".

Something like this:
Code: [Select]
public OnPlayerSpawn(playerid,classid)
{
        GameTextForAllBottom("~b~server-name"); // blue colored
return 1;
}

You can use and different colors like yellow,blue,green etc.
For more info about game text codes (for colors), click here.

Quote
Painful/Noob scripters acts like: I Am The Best Scripter Because I Announce My Releases With Big Font Size Without Giving Too Much Info' In The Hope They All Will Download And Check It. I Ignore Bad Replies, Replies That I Could Learn From, And Replies With So Much Text.



Offline abdulfussy

  • Street Thug
  • *
  • Posts: 13
  • Trust No One
    • View Profile
Re: help
« Reply #2 on: January 23, 2013, 04:35:38 pm »
man how top ut in mnay colors like each letter in one collor


Offline sseebbyy

  • VC:MP Veteran
  • *****
  • Posts: 774
  • Immortal VC:MP Player
    • View Profile
    • Zombie Invasion => Server Forum [DEAD PROJECT]
Re: help
« Reply #3 on: January 23, 2013, 05:08:26 pm »
Use code of color before any word/letter/digital.

like this:
Code: [Select]
GameTextForAllBottom("~y~yellow ~p~purple ~b~blue");
GameTextForAllBottom("~y~s~o~e~p~r~h~v~x~e~y~r");

Quote
Painful/Noob scripters acts like: I Am The Best Scripter Because I Announce My Releases With Big Font Size Without Giving Too Much Info' In The Hope They All Will Download And Check It. I Ignore Bad Replies, Replies That I Could Learn From, And Replies With So Much Text.