summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHoraK-FDF <horak-fdf@web.de>2022-11-14 18:46:39 +0100
committerHoraK-FDF <horak-fdf@web.de>2022-11-14 18:46:39 +0100
commit23828051e4f2fcc1c18858e148a44a3ca2a265aa (patch)
treebabdfb0c7ba8b5f5640e850258776f994de4e0eb
parent947897b52f14d58d5fe816cc38487ba288f6765c (diff)
downloadtmwa-23828051e4f2fcc1c18858e148a44a3ca2a265aa.tar.gz
tmwa-23828051e4f2fcc1c18858e148a44a3ca2a265aa.tar.bz2
tmwa-23828051e4f2fcc1c18858e148a44a3ca2a265aa.tar.xz
tmwa-23828051e4f2fcc1c18858e148a44a3ca2a265aa.zip
mobinfo getmobdrops
-rw-r--r--src/map/pc.cpp30
-rw-r--r--src/map/script-fun.cpp69
2 files changed, 67 insertions, 32 deletions
diff --git a/src/map/pc.cpp b/src/map/pc.cpp
index d427ab9..6c2f673 100644
--- a/src/map/pc.cpp
+++ b/src/map/pc.cpp
@@ -130,7 +130,7 @@ earray<interval_t, ItemLook, ItemLook::COUNT> aspd_base_0 //=
650_ms, // 0 NONE
700_ms, // 1 BLADE or some other common weapons
750_ms, // 2
-610_ms, // 3 SETZER_AND_SCYTHE
+600_ms, // 3 SETZER_AND_SCYTHE
2000_ms, // 4
2000_ms, // 5
800_ms, // 6 Falchion
@@ -792,7 +792,7 @@ void pc_set_attack_info(dumb_ptr<map_session_data> sd, interval_t speed, int ran
}
else
{
- pc_calcstatus(sd, 9);
+ sd->aspd = speed;
clif_updatestatus(sd, SP::ASPD);
clif_updatestatus(sd, SP::ATTACKRANGE);
}
@@ -1085,12 +1085,6 @@ void pc_set_weapon_look(dumb_ptr<map_session_data> sd)
* When first==0, the parameter to be calculated is from before the call
* If it changes, it will automatically send it,
* Actively changed parameters should be send on their own
- *
- * First is a bitmask
- * &1 = ?
- * &2 = ?
- * &4 = ?
- * &8 = magic override
*------------------------------------------
*/
int pc_calcstatus(dumb_ptr<map_session_data> sd, int first)
@@ -1523,18 +1517,11 @@ int pc_calcstatus(dumb_ptr<map_session_data> sd, int first)
if (sd->speed_rate != 100)
sd->speed = sd->speed * sd->speed_rate / 100;
sd->speed = std::max(sd->speed, 1_ms);
-
- /* Magic speed */
- if (sd->attack_spell_override || first & 8)
- sd->aspd = sd->attack_spell_delay;
-
if (aspd_rate != 100)
sd->aspd = sd->aspd * aspd_rate / 100;
- /* Red Threshold Calculation */
- if (sd->aspd < 300_ms) {
- sd->aspd = 300_ms + ((sd->aspd - 300_ms) * 15 / 20);
- }
+ if (sd->attack_spell_override)
+ sd->aspd = sd->attack_spell_delay;
sd->aspd = std::max(sd->aspd, battle_config.max_aspd);
sd->amotion = sd->aspd;
@@ -2877,7 +2864,7 @@ void pc_attack_timer(TimerData *, tick_t tick, BlockId id)
{"@target_id"_s, static_cast<int32_t>(unwrap<BlockId>(bl->bl_id))},
};
npc_event_do_l(sd->magic_attack, sd->bl_id, arg);
- sd->attackabletime = tick + sd->aspd; // sd->attack_spell_delay
+ sd->attackabletime = tick + sd->attack_spell_delay;
sd->attack_spell_charges--;
if (!sd->attack_spell_charges)
{
@@ -3137,10 +3124,7 @@ int pc_gainexp_reason(dumb_ptr<map_session_data> sd, int base_exp, int job_exp,
}
// Double Xp Weekends
- if (reason != PC_GAINEXP_REASON::SCRIPT)
- base_exp = (base_exp * static_cast<double>(battle_config.base_exp_rate) / 100.);
-
- // Sanitization
+ base_exp = (base_exp * static_cast<double>(battle_config.base_exp_rate) / 100.);
if (base_exp <= 0)
base_exp = 0;
else if (base_exp > 1000000000)
@@ -5631,8 +5615,6 @@ int pc_logout(dumb_ptr<map_session_data> sd) // [fate] Player logs out
#endif
pc_setglobalreg(sd, stringish<VarName>("MAGIC_CAST_TICK"_s), 0);
- npc_event_doall_l(stringish<ScriptLabel>("OnPCLogoutEvent"_s), sd->bl_id, nullptr);
-
MAP_LOG_STATS(sd, "LOGOUT"_fmt);
return 0;
}
diff --git a/src/map/script-fun.cpp b/src/map/script-fun.cpp
index fd3eec0..b56a651 100644
--- a/src/map/script-fun.cpp
+++ b/src/map/script-fun.cpp
@@ -2868,7 +2868,7 @@ void builtin_mobinfo(ScriptState *st)
*------------------------------------------
*/
static
-void builtin_getmobdrops(ScriptState *st)
+void builtin_mobinfo_droparrays(ScriptState *st)
{
dumb_ptr<block_list> bl = nullptr;
@@ -2886,7 +2886,7 @@ void builtin_getmobdrops(ScriptState *st)
if (prefix != '$' && prefix != '@' && prefix != '.')
{
- PRINTF("builtin_getmobdrops: illegal scope!\n"_fmt);
+ PRINTF("builtin_mobinfo_droparrays: illegal scope!\n"_fmt);
push_int<ScriptDataInt>(st->stack, 0);
return;
}
@@ -2904,7 +2904,7 @@ void builtin_getmobdrops(ScriptState *st)
case MobInfo_DropArrays::IDS:
if (postfix == '$')
{
- PRINTF("builtin_getmobdrops: wrong array type for ID's (Int expected but String found)!\n"_fmt);
+ PRINTF("builtin_mobinfo_droparrays: wrong array type for ID's (Int expected but String found)!\n"_fmt);
push_int<ScriptDataInt>(st->stack, 0);
return;
}
@@ -2912,7 +2912,7 @@ void builtin_getmobdrops(ScriptState *st)
case MobInfo_DropArrays::NAMES:
if (postfix != '$')
{
- PRINTF("builtin_getmobdrops: wrong array type for Names (String expected but Int found)!\n"_fmt);
+ PRINTF("builtin_mobinfo_droparrays: wrong array type for Names (String expected but Int found)!\n"_fmt);
push_int<ScriptDataInt>(st->stack, 0);
return;
}
@@ -2920,13 +2920,13 @@ void builtin_getmobdrops(ScriptState *st)
case MobInfo_DropArrays::PERCENTS:
if (postfix == '$')
{
- PRINTF("builtin_getmobdrops: wrong array type for Percents (Int expected but String found)!\n"_fmt);
+ PRINTF("builtin_mobinfo_droparrays: wrong array type for Percents (Int expected but String found)!\n"_fmt);
push_int<ScriptDataInt>(st->stack, 0);
return;
}
break;
default:
- PRINTF("builtin_getmobdrops: unknown request\n"_fmt);
+ PRINTF("builtin_mobinfo_droparrays: unknown request\n"_fmt);
push_int<ScriptDataInt>(st->stack, 0);
return;
break;
@@ -2989,6 +2989,58 @@ void builtin_getmobdrops(ScriptState *st)
}
/*==========================================
+ * Returns drops of a monster to standardized arrays
+ * return values:
+ * 0 = mob not found
+ * 1 = mob found and has drops
+ * 2 = mob found and has no drops
+ *------------------------------------------
+ */
+static
+void builtin_getmobdrops(ScriptState *st)
+{
+ dumb_ptr<block_list> bl = nullptr;
+
+ Species mob_id = wrap<Species>(conv_num(st, &AARG(0)));
+
+ int status = 0; // 0 = mob not found, 1 = mob found and has drops, 2 = mob found and has no drops
+ int i = 0;
+
+ if (mobdb_checkid(mob_id) == Species())
+ {
+ push_int<ScriptDataInt>(st->stack, status);
+ return;
+ }
+
+ status = 1;
+
+ for (; i < MaxDrops; ++i)
+ if (get_mob_db(mob_id).dropitem[i].nameid)
+ {
+ set_reg(bl, VariableCode::VARIABLE, SIR::from(variable_names.intern("$@MobDrop_item"_s), i), get_mob_db(mob_id).dropitem[i].p.num);
+
+ Option<P<struct item_data>> i_data = Some(itemdb_search(get_mob_db(mob_id).dropitem[i].nameid));
+ RString item_name = i_data.pmd_pget(&item_data::name).copy_or(stringish<ItemName>(""_s));
+ set_reg(bl, VariableCode::VARIABLE, SIR::from(variable_names.intern("$@MobDrop_name$"_s), i), item_name);
+
+ set_reg(bl, VariableCode::VARIABLE, SIR::from(variable_names.intern("$@MobDrop_rate"_s), i), get_mob_db(mob_id).dropitem[i].p.num);
+ }
+ else
+ {
+ if (i == 0)
+ status = 2;
+ break;
+ }
+
+ if (status == 1)
+ set_reg(bl, VariableCode::VARIABLE, SIR::from(variable_names.intern("$@MobDrop_count"_s), 0), i);
+ else
+ set_reg(bl, VariableCode::VARIABLE, SIR::from(variable_names.intern("$@MobDrop_count"_s), 0), 0);
+
+ push_int<ScriptDataInt>(st->stack, status);
+}
+
+/*==========================================
*
*------------------------------------------
*/
@@ -3514,7 +3566,7 @@ void builtin_mapannounce(ScriptState *st)
/*==========================================
* ユーザー数所得
- * User Revenue
+ * User Count
*------------------------------------------
*/
static
@@ -5500,7 +5552,8 @@ BuiltinFunction builtin_functions[] =
BUILTIN(openstorage, ""_s, '\0'),
BUILTIN(getexp, "ii"_s, '\0'),
BUILTIN(mobinfo, "ii"_s, 'v'),
- BUILTIN(getmobdrops, "iiN"_s, 'i'),
+ BUILTIN(mobinfo_droparrays, "iiN"_s, 'i'),
+ BUILTIN(getmobdrops, "i"_s, 'i'),
BUILTIN(summon, "Mxyssmii?"_s, '\0'),
BUILTIN(monster, "Mxysmi?"_s, '\0'),
BUILTIN(areamonster, "Mxyxysmi?"_s, '\0'),