ezt szeretném nagyobbra betűre de hogyan:
/* Plugin generated by AMXX-Studio */ #include <amxmodx> #include <amxmisc> #define PLUGIN "RoundEnd HUD" #define VERSION "1.0" #define AUTHOR "crazy" public plugin_init() { register_plugin(PLUGIN, VERSION, AUTHOR) register_logevent("ctwin", 6, "3=CTs_Win", "3=All_Hostages_Rescued") register_logevent("twin" , 6, "3=Terrorists_Win", "3=Target_Bombed") register_logevent("noonewin" , 4, "1=Round_Draw") } public ctwin() { set_hudmessage(random(256), random(256),random(256), -1.0, 0.2, 0, 1.0, 1.0, 0.01, 0.01) show_hudmessage(0, "Anti-Terrorista GYŐZELEM!") } public twin() { set_hudmessage(random(256), random(256), random(256), -1.0, 0.2, 0, 1.0, 1.0, 0.01, 0.01) show_hudmessage(0, "Terrorista GYŐZELEM!") } public noonewin() { set_hudmessage(random(256), random(256), random(256), -1.0, 0.2, 0, 1.0, 1.0, 0.01, 0.01) show_hudmessage(0, "Senki sem nyert!") }
|