Search found 3 matches

by dumptruck_ds
Fri Dec 31, 2021 4:59 pm
Forum: News & Announcements
Topic: itembk2.wav - Site(s) restored!
Replies: 16
Views: 38930

Re: itembk2.wav - Site(s) restored!

Woo hoo. Great to know this is back up and healthy again. Thanks to Spirit and Pinchy and anyone else who has contributed to reviving the forums!
by dumptruck_ds
Mon Sep 10, 2018 6:42 am
Forum: QuakeC Programming
Topic: trigger_usekey center print blues
Replies: 1
Views: 3017

Re: trigger_usekey center print blues

Spike and Khreathor helped me solve this.

Code: Select all

if (self.owner.items == IT_KEY1)
should instead be

Code: Select all

if (self.items == IT_KEY1)
hurray!
by dumptruck_ds
Mon Sep 10, 2018 5:48 am
Forum: QuakeC Programming
Topic: trigger_usekey center print blues
Replies: 1
Views: 3017

trigger_usekey center print blues

Tearing my hair out! Most of what follows is ripped directly from hipnotic's hiptrigs.qc I have only made explicit spawnflags as part of my trial and error process as I am not a coder. Very simply, I am trying to get the "trigger_usekey" entity to work. Where I am at currently is that the ...