document most quest opcodes
This commit is contained in:
+4
-4
@@ -3132,14 +3132,14 @@ void send_rare_enemy_index_list(shared_ptr<Client> c, const vector<size_t>& inde
|
||||
send_command_t(c, 0xDE, 0x00, cmd);
|
||||
}
|
||||
|
||||
void send_quest_function_call(Channel& ch, uint16_t function_id) {
|
||||
void send_quest_function_call(Channel& ch, uint16_t label) {
|
||||
S_CallQuestFunction_V3_BB_AB cmd;
|
||||
cmd.function_id = function_id;
|
||||
cmd.label = label;
|
||||
ch.send(0xAB, 0x00, &cmd, sizeof(cmd));
|
||||
}
|
||||
|
||||
void send_quest_function_call(shared_ptr<Client> c, uint16_t function_id) {
|
||||
send_quest_function_call(c->channel, function_id);
|
||||
void send_quest_function_call(shared_ptr<Client> c, uint16_t label) {
|
||||
send_quest_function_call(c->channel, label);
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
Reference in New Issue
Block a user