ShowSyncHudText in TF2
Hi all, i'm trying to make a really simple plugin that displays on the player's HUD the zone the client is currently situated. I'm using this really useful plugin for my objective: https://forums.alliedmods.net/showthread.php?p=2023591
I've read that the limit of different texts to send on the majority of games is 6. (Max 6 channels) Since the zones in my level are way above 6, is there a way to display more than 6 different messages on the same moment? (for example, when more than 6 players are in different zones) Thanks in advance :) |
Re: ShowSyncHudText in TF2
It sounds like you want to display a different message for each client (depending on what level they are at), not displaying more than 6 messages to 1 client at the same time.
If so just do Code:
ShowSyncHudText(client, HUDHandle, "You are at level: %d", g_ClientLevel[client]); |
Re: ShowSyncHudText in TF2
You can't without editing the client's engine. You can however use the "\n" to make the text goto the next line.
|
Re: ShowSyncHudText in TF2
Quote:
|
| All times are GMT -4. The time now is 21:34. |
Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.