From 6d5919b4f782adc453106312c394cf1b7dd9e58f Mon Sep 17 00:00:00 2001 From: mekolat Date: Fri, 13 May 2016 14:34:56 -0400 Subject: implement SMSG_MAP_SET_TILES_TYPE, add builtin sendcollision --- src/map/script-fun.cpp | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'src/map/script-fun.cpp') diff --git a/src/map/script-fun.cpp b/src/map/script-fun.cpp index 98c07ed..74045f2 100644 --- a/src/map/script-fun.cpp +++ b/src/map/script-fun.cpp @@ -4186,6 +4186,38 @@ void builtin_remotecmd(ScriptState *st) clif_remote_command(sd, msg); } +static +void builtin_sendcollision(ScriptState *st) +{ + dumb_ptr sd = script_rid2sd(st); + MapName map_name = stringish(ZString(conv_str(st, &AARG(0)))); + int mask = conv_num(st, &AARG(1)); + short x1, y1, x2, y2; + x1 = x2 = conv_num(st, &AARG(2)); + y1 = y2 = conv_num(st, &AARG(3)); + + if (HARG(5)) + { + x2 = conv_num(st, &AARG(4)); + y2 = conv_num(st, &AARG(5)); + if (HARG(6)) + { + CharName player = stringish(ZString(conv_str(st, &AARG(6)))); + sd = map_nick2sd(player); + } + } + + else if (HARG(4)) + { + CharName player = stringish(ZString(conv_str(st, &AARG(4)))); + sd = map_nick2sd(player); + } + + if (sd == nullptr) + return; + clif_update_collision(sd, x1, y1, x2, y2, map_name, mask); +} + static void builtin_music(ScriptState *st) { @@ -4818,6 +4850,7 @@ BuiltinFunction builtin_functions[] = BUILTIN(title, "s"_s, '\0'), BUILTIN(smsg, "e??"_s, '\0'), BUILTIN(remotecmd, "s?"_s, '\0'), + BUILTIN(sendcollision, "Mixy???"_s, '\0'), BUILTIN(music, "s"_s, '\0'), BUILTIN(mapmask, "i?"_s, '\0'), BUILTIN(getmask, ""_s, 'i'), -- cgit v1.2.3-70-g09d2