Checking Software via ACS

Discuss all aspects related to modding Zandronum here.
Post Reply
Stiff
Forum Regular
Posts: 312
Joined: Sun Jul 15, 2012 10:03 am
Location: Location: about 1,4 KM away from xrgman
Contact:

Checking Software via ACS

#1

Post by Stiff » Fri Apr 11, 2014 3:34 pm

Maybe a silly question, but is it possible to check via acs if someone uses software renderer?
Last edited by Stiff on Fri Apr 11, 2014 3:35 pm, edited 1 time in total.
Stiffstuff

Zombie Horde:
> ZE14 - Jailbreak PART 1 (Done) (Upcomming update)
> ZM14 - Jailbreak PART 2 (Done)
> ZE19 - Total Destruction PART 1 (Done) (Upcomming update)
> ZE25 - Total Destruction PART 2 (Done)
> ZEXX - Total Destruction PART 3 (Deprecated)
> ZE27 - Lava Temple (Done) (Upcomming update)

Klofkac
Forum Regular
Posts: 481
Joined: Sat Jun 09, 2012 1:31 pm
Location: Ask Grandvoid servers

RE: Checking Software via ACS

#2

Post by Klofkac » Fri Apr 11, 2014 3:40 pm

GetCVAR("vid_renderer"); from a clientside script.
0 = software, 1 = GL
𝕂𝕝𝕠𝕗𝕜𝕒𝕔

Stiff
Forum Regular
Posts: 312
Joined: Sun Jul 15, 2012 10:03 am
Location: Location: about 1,4 KM away from xrgman
Contact:

RE: Checking Software via ACS

#3

Post by Stiff » Fri Apr 11, 2014 3:44 pm

wow
So much possible with ACS.

Thanks dude

EDIT:

Is it also possible to check if Dynamic Lights are enabled?
Last edited by Stiff on Fri Apr 11, 2014 3:46 pm, edited 1 time in total.
Stiffstuff

Zombie Horde:
> ZE14 - Jailbreak PART 1 (Done) (Upcomming update)
> ZM14 - Jailbreak PART 2 (Done)
> ZE19 - Total Destruction PART 1 (Done) (Upcomming update)
> ZE25 - Total Destruction PART 2 (Done)
> ZEXX - Total Destruction PART 3 (Deprecated)
> ZE27 - Lava Temple (Done) (Upcomming update)

User avatar
ibm5155
Addicted to Zandronum
Posts: 1641
Joined: Tue Jun 05, 2012 9:32 pm
Location: Somewhere, over the rainbow

RE: Checking Software via ACS

#4

Post by ibm5155 » Fri Apr 11, 2014 4:18 pm

If it's for zh, I wouldn't waste my time again making the map looks bright for software use, too much sector use and tags lost '-', next map will be 100% gl :S
Projects
Cursed Maze: DONE, V2.0
Zombie Horde - ZM09 map update: [3/15/13]
Need help with English? Then you've come to the right place!

<this post is proof of "Decline">

Stiff
Forum Regular
Posts: 312
Joined: Sun Jul 15, 2012 10:03 am
Location: Location: about 1,4 KM away from xrgman
Contact:

RE: Checking Software via ACS

#5

Post by Stiff » Fri Apr 11, 2014 5:42 pm

Where are you talking about,

First of all this isn't for ZH.
Second, I never supported software and I never will :p
Stiffstuff

Zombie Horde:
> ZE14 - Jailbreak PART 1 (Done) (Upcomming update)
> ZM14 - Jailbreak PART 2 (Done)
> ZE19 - Total Destruction PART 1 (Done) (Upcomming update)
> ZE25 - Total Destruction PART 2 (Done)
> ZEXX - Total Destruction PART 3 (Deprecated)
> ZE27 - Lava Temple (Done) (Upcomming update)

User avatar
SwordGrunt
Forum Regular
Posts: 377
Joined: Thu Jun 07, 2012 8:43 pm

RE: Checking Software via ACS

#6

Post by SwordGrunt » Fri Apr 11, 2014 5:52 pm

for dynamic lights it's the same, command is gl_lights I think

User avatar
Espio
Forum Regular
Posts: 370
Joined: Sat Jun 02, 2012 8:28 pm
Location: OldWorldBlues.esm

RE: Checking Software via ACS

#7

Post by Espio » Fri Apr 11, 2014 10:14 pm

Why, so the screen can be flooded with text?

I know of a certain wad that spams the same message saying I'm not in OpenGL everytime you respawn. Long as I can shoot shit and can see shit walkable on I don't care what renderer I'm in.

"Ooh but you're missing out on the fancy models, and. and. and-"

Fuck you, models have never fit into Doom's original sprites.
Last edited by Espio on Fri Apr 11, 2014 10:16 pm, edited 1 time in total.
Image
https://youtu.be/qbgpcemxVPA?t=8s "Get the fuck up."
https://www.mediafire.com/?kb7sf1nizgwvqsr My custom music wad for Doom I & II - 166 MEG WARNING

<Dark-Slayer>CorpseGr1nder, get a job
<Konar6>blow*

(09:58:54)<BlueCool>think of all the stuff i couldve done in thoes 5 second
(09:59:05)<BlueCool>1. bake cookies
(09:59:16)<BlueCool>2. eat cookies

User avatar
Monsterovich
Forum Regular
Posts: 343
Joined: Sun Jun 17, 2012 5:46 pm

RE: Checking Software via ACS

#8

Post by Monsterovich » Sun Apr 13, 2014 8:58 am

script 1 enter clientside
{
if (GetCVar("vid_renderer") == 0)
{
print("This mod is playable with OpenGL only!"); // print to activator
}
}

Post Reply