Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Xenos109

Pages: [1] 2 3 4 5
1
Suggestions & Requests / Re: Animated HUD.
« on: October 31, 2018, 10:17:27 AM »
longtime nosee xenos

These forums are a boredom magnet

2
Suggestions & Requests / Re: Animated HUD.
« on: October 30, 2018, 09:26:34 PM »
Use a switch statement, I forget the exact syntax in Torque, but something like this should work:
Code: [Select]
%healthBitmap = "";

switch(mFloor(%health / 20))
{
    case 5: %healthBitmap = "<bitmap:Add-Ons/server_totalrpg/100%health>"; break;
    case 4: %healthBitmap = "<bitmap:Add-Ons/server_totalrpg/80%health>"; break;
    case 3: %healthBitmap = "<bitmap:Add-Ons/server_totalrpg/60%health>"; break;
    case 2: %healthBitmap = "<bitmap:Add-Ons/server_totalrpg/40%health>"; break;
    case 1: %healthBitmap = "<bitmap:Add-Ons/server_totalrpg/20%health>"; break;
    default: %healthBitmap = "Dead";
}

 commandToClient(%client, 'bottomPrint', ... %healthBitmap ... );

3
Suggestions & Requests / Re: Animated HUD.
« on: October 08, 2018, 08:33:13 AM »
Google how a switch statement works, and if u have any basic programming knowledge, that should make your life easy.

4
General Discussion / Re: Dedicated Hosting?
« on: August 15, 2018, 03:24:47 PM »
NFO is legit 2x as expensive as Vultr last time I checked, check out Vultr for vps hosting.

5
Modification Help / Re: Detect Spawn - Client Side
« on: June 20, 2018, 10:00:08 PM »
Thanks

6
Modification Help / Detect Spawn - Client Side
« on: June 20, 2018, 09:34:06 PM »
Theres gotta be a function for this? just to tell when you spawn from the client side.

7
Modification Help / Re: Close <just:center>
« on: January 12, 2017, 11:21:58 PM »

8
Modification Help / Close <just:center>
« on: January 12, 2017, 10:58:10 PM »
If I do
Code: [Select]
"<just:center>Words"How would I close said bracket, i don't want the rest of everything in the center

9
Modification Help / Re: Wait between functions
« on: January 08, 2017, 10:30:08 PM »
Code: [Select]
%obj.playAudio(0, StartupSound);
%obj.schedule(500, 0, "playAudio", 0, ShutdownSound);
This should work i believe.

10
General Discussion / Re: any hosting services that accept paypal
« on: January 07, 2017, 03:43:14 PM »
PM me if you need a server for info

11
Help / Re: Intel HD Graphics Maybe?
« on: September 19, 2016, 10:06:06 PM »
Yeah I haven't put a gpu into this Rig yet, still need to buy one, would I be best off turning off Intel HD prolly then

12
Help / Intel HD Graphics Maybe?
« on: September 18, 2016, 11:40:24 PM »
I believe this issue started when I installed the Intel HD graphics for windows 10 on my new desktop, but Blockland just crashes every time I try and start it...


13
General Discussion / Re: R.I.P BlockNet Hosting Service
« on: August 26, 2016, 04:03:49 PM »
I'll put you a linux server setup with desktop access for $5 if people really need something

14
Modification Help / Re: Wine or Windows Server 2012 R2?
« on: July 20, 2016, 08:36:53 PM »
Please Debian, Ubuntu is Cancer, or CentOS, basically most anything but Ubuntu. Ubuntu is only good for beginners using it for everyday computing.

15
Modification Help / Re: Grey Bar on Bottom Print
« on: July 17, 2016, 11:20:52 PM »

so that other addons can package over your bottomPrint if they need to


Thanks, and it's a mod that's gunna want to not be overwritten

Pages: [1] 2 3 4 5