Welcome to the Builder Academy

Question send_to_outdoor

More
10 Nov 2012 15:07 - 10 Nov 2012 15:08 #1019 by drefs
send_to_outdoor was created by drefs
Code:
void send_to_outdoor(const char *messg, ...) { struct descriptor_data *i; + va_list args; if (!messg || !*messg) return; for (i = descriptor_list; i; i = i->next) { - va_list args; if (STATE(i) != CON_PLAYING || i->character == NULL) continue; if (!AWAKE(i->character) || !OUTSIDE(i->character)) continue; va_start(args, messg); vwrite_to_output(i, messg, args); va_end(args); } }
Last edit: 10 Nov 2012 15:08 by drefs.

Please Log in or Create an account to join the conversation.

More
10 Nov 2012 18:26 #1021 by Rumble
Replied by Rumble on topic Re: send_to_outdoor
Thanks Drefs, just saw your message too.

Rumble
The Builder Academy
tbamud.com 9091
rumble@tbamud.com

Please Log in or Create an account to join the conversation.

Time to create page: 0.192 seconds