|
New Member
|

09-07-2008
, 22:16
How to print fix text on the screen?
|
#1
|
See the image, equal of SuperHeroMod Help.
Quote:
#include <amxmodx>
new help_hudmsg[501];
public plugin_init()
{
register_plugin("Blah", "1.0", "anyone")
caps()
}
public caps()
{
new lenx = 500
new n = 0
n += copy(help_hudmsg[n],lenx-n,"Super Hero MOD Help^n^n")
n += copy(help_hudmsg[n],lenx-n,"How To Use Powers:^n")
n += copy(help_hudmsg[n],lenx-n,"--------------------^n")
n += copy(help_hudmsg[n],lenx-n,"Input bind into console^n")
n += copy(help_hudmsg[n],lenx-n,"Bind Example:^n")
n += copy(help_hudmsg[n],lenx-n,"bind h +power1^n")
n += copy(help_hudmsg[n],lenx-n,"--------------------^n^n")
n += copy(help_hudmsg[n],lenx-n,"Client Commands:^n")
n += copy(help_hudmsg[n],lenx-n,"/help^n")
n += copy(help_hudmsg[n],lenx-n,"/clearpowers^n")
n += copy(help_hudmsg[n],lenx-n,"/showmenu^n")
n += copy(help_hudmsg[n],lenx-n,"/drop <hero>^n")
n += copy(help_hudmsg[n],lenx-n,"/herolist^n")
n += copy(help_hudmsg[n],lenx-n,"/playerskills^n")
n += copy(help_hudmsg[n],lenx-n,"/playerlevels^n")
n += copy(help_hudmsg[n],lenx-n,"/myheroes^n")
n += copy(help_hudmsg[n],lenx-n,"------------------------^n")
n += copy(help_hudmsg[n],lenx-n,"Enable Help: /helpon^n")
n += copy(help_hudmsg[n],lenx-n,"Disable Help: /helpoff")
}
|
I try, but, no results... Dont look the messages, I want a one plugin with this. Im new, i cannot programmer.
[IMG]http://img210.**************/img210/2218/superherohelpyf0.jpg[/IMG]
See this code:
Thank you for help.
Last edited by New_Coder; 09-07-2008 at 22:18.
|
|