Search found 4 matches

by creazee
May 2nd, 2020, 10:37 pm
Forum: CoD4 Mapping Help
Topic: Hit Target Problem
Replies: 1
Views: 3097

Hit Target Problem

I'm using this code: main() { thread bonus_targ_1(); } bonus_targ_1() { trapdoor=getent("bonus_targ_1","targetname"); trig=getent("bonus_targ_trig_1","targetname"); while(1) { trig waittill ("trigger"); trapdoor rotateto( (0,0,-90),0.3); trapdoor wai...
by creazee
October 18th, 2019, 3:28 pm
Forum: CoD4 Mapping Help
Topic: Custom Sound - Not Working
Replies: 4
Views: 16314

Re: Custom Sound - Not Working

You can close/delete both if possible.

(Fixed by placing your 'iwd - sound' inside the mod folder you're running)

or

usermaps/mp_mapname
by creazee
October 17th, 2019, 7:46 pm
Forum: CoD4 Mapping Help
Topic: Custom Sound - Not Working
Replies: 4
Views: 16314

Custom Sound - Not Working 2

From the last post of showing proof, which hasn't been approved yet. I have an image to show about the problem. Shown within my last post, I had the right directories. https://cdn.discordapp.com/attachments/634138335337644053/634151880792080384/error.png Sometimes it works & sometimes it doesn't...
by creazee
October 16th, 2019, 6:19 pm
Forum: CoD4 Mapping Help
Topic: Custom Sound - Not Working
Replies: 4
Views: 16314

Custom Sound - Not Working

I've tried to modify sounds within a script. All the directories seem to be in place, but the .wav isn't playing within the map. Here's my .gsc file (Not main) main() { thread musicTrigger1(); thread musicTrigger2(); thread musicTrigger3(); thread musicTrigger4(); thread musicOffTrigger(); thread on...