From e23b028861e92d025d1bf851783c1059e22fbb6c Mon Sep 17 00:00:00 2001 From: "Hello=)" Date: Sat, 1 Mar 2025 06:41:16 +0300 Subject: This changes summon() to return summoned being bl_id Technically it makes TMWA summon() builtin a bit more like Herc summon(). It now would return summon's being bl_id if summon successful. Rationale behind this change: 1) Makes call behaving a bit more like it does now in Herc, why not? 2) Having being ID allows to do something with just spawned summon in scripts. (now finding just summoned being is hard/weird code-wise) 3) Having ID of mob allows to check if summon succeeded. Summon can fail if e.g. position randomized and chosen position is a collision. This would allow me to implement "antibug" summon refactor in content. Caveat: Content (spells) needs refactor to swallow fact its now returns "int" instead. If this given go, it MUST only be merged with matching content change. --- src/map/script-fun.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/map/script-fun.cpp b/src/map/script-fun.cpp index c471da1..5982624 100644 --- a/src/map/script-fun.cpp +++ b/src/map/script-fun.cpp @@ -3111,6 +3111,7 @@ void builtin_summon(ScriptState *st) if (mob) { mob->mode = get_mob_db(monster_id).mode; + push_int(st->stack, unwrap(mob->bl_id)); // Return mob GID to caller switch (monster_attitude) { @@ -3150,6 +3151,10 @@ void builtin_summon(ScriptState *st) mob->master_dist = 6; } } + else // got no (mob), default + { + push_int(st->stack, 0); + } } /*========================================== @@ -5687,7 +5692,7 @@ BuiltinFunction builtin_functions[] = BUILTIN(mobinfo, "ii"_s, 'v'), BUILTIN(mobinfo_droparrays, "iiN"_s, 'i'), BUILTIN(getmobdrops, "i"_s, 'i'), - BUILTIN(summon, "Mxyssmii?"_s, '\0'), + BUILTIN(summon, "Mxyssmii?"_s, 'i'), BUILTIN(monster, "Mxysmi?"_s, '\0'), BUILTIN(areamonster, "Mxyxysmi?"_s, '\0'), BUILTIN(killmonster, "ME"_s, '\0'), -- cgit v1.2.3-70-g09d2