Difference between revisions of "Lua:AddHudText"
From Fortress Forever Wiki
Jump to navigationJump to search (New page: {{Infobox manual/Header}} ==AddHudText== Puts a text object on a player's screen. ===Usage=== <pre>AddHudText(player, text_id, text, a, b, c, d)</pre> ===Input=== * player(CFFPlayer) Th...) |
(No difference)
|
Revision as of 11:05, 11 May 2009
|
AddHudTextPuts a text object on a player's screen. UsageAddHudText(player, text_id, text, a, b, c, d) Input
OutputReturns: nothing Examplelocal player = CastToPlayer( player_entity ) AddHudText( player, "hunted_location", "Hunted Location: " .. player_hunted:GetLocation(), 4, 44, 0, 1 ) |