mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
17 lines
295 B
C++
Executable File
17 lines
295 B
C++
Executable File
#include "../client.h"
|
|
|
|
void command_interrupt(Client *c, const Seperator *sep)
|
|
{
|
|
uint16 ci_message = 0x01b7, ci_color = 0x0121;
|
|
|
|
if (sep->arg[1][0]) {
|
|
ci_message = atoi(sep->arg[1]);
|
|
}
|
|
if (sep->arg[2][0]) {
|
|
ci_color = atoi(sep->arg[2]);
|
|
}
|
|
|
|
c->InterruptSpell(ci_message, ci_color);
|
|
}
|
|
|