Open finelagusaz opened 2 years ago
Perhaps you could consider using the newer version of yaya's dicdir function to sort dic files to keep everything more organised like this:
If you are considering manually appending a different response to each shell, you might consider using logic like the following
OnShellXXX{
if ISFUNC('OnShellXXX_'+ShellID){ //like OnShellXXX_master
EVAL('OnShellXXX_'+ShellID) //call it
return
}
else
//default reaction or error msg here
}
課題
もう少し深掘り
改善案
master シェル向けの反応と追加シェル向けの反応を分割する
判定ごとに辞書を分割する
Pros
Cons
案1
わけるならこれぐらいが落とし所か?
案2
あまり分離してないかも
案3