L2Object target = player.getTarget();
- if (!player.isGM() && (target == null
- || !(target instanceof L2Npc)
- || !list.checkNpcId(((L2Npc)target).getNpcId())
- || !((L2Npc)target).canInteract(player)))
- return;
-
+ boolean singleMultiSell = false;
+ if (Config.BBS_ALLOWED_MULTISELLS[1] < Config.BBS_ALLOWED_MULTISELLS[0])
+ singleMultiSell = true;
+ if ((singleMultiSell ? (_listId != Config.BBS_ALLOWED_MULTISELLS[0]) : (_listId < Config.BBS_ALLOWED_MULTISELLS[0] || _listId > Config.BBS_ALLOWED_MULTISELLS[1])))
+ if (!player.isGM()
+ && (target == null || !(target instanceof L2Npc)
+ || !list.checkNpcId(((L2Npc) target).getNpcId()) || !((L2Npc) target).canInteract(player)))
+ {
+ MultiSellEntry hackEntry = null;
+ for (MultiSellEntry entry : list.getEntries())
+ {
+ if (entry.getEntryId() == _entryId)
+ {
+ hackEntry = entry;
+ }
+ }
+ String hackItemNames = "";
+ if (hackEntry != null)
+ {
+ List<MultiSellIngredient> hackItems = hackEntry.getProducts();
+ for (MultiSellIngredient ing : hackItems)
+ hackItemNames += ItemTable.getInstance().getTemplate(ing.getItemId()).getName()
+ + ", ";
+ hackItemNames = hackItemNames.substring(0, hackItemNames.lastIndexOf(","));
+ }
+ else
+ hackItemNames = "null";
+ System.out.println("Possible Hack attempt: Player " + player.getName()
+ + " trying to buy " + hackItemNames + " from multisell Id = " + _listId
+ + " via NPC: " + (target == null ? "null" : target.getName()));
+ return;
+ }
for (MultiSellEntry entry : list.getEntries())
{
if (entry.getEntryId() == _entryId)
@@ -135,8 +162,11 @@
// given the template entry and information about maintaining enchantment and applying taxes
// re-create the instance of the entry that will be used for this exchange
// i.e. change the enchantment level of select ingredient/products and adena amount appropriately.
+ boolean singleMultiSell = false;
+ if (Config.BBS_ALLOWED_MULTISELLS[1] < Config.BBS_ALLOWED_MULTISELLS[0])
+ singleMultiSell = true;
L2Npc merchant = (player.getTarget() instanceof L2Npc) ? (L2Npc) player.getTarget() : null;
- if (merchant == null)
+ if (merchant == null && (singleMultiSell ? (_listId != Config.BBS_ALLOWED_MULTISELLS[0]) : (_listId < Config.BBS_ALLOWED_MULTISELLS[0] || _listId > Config.BBS_ALLOWED_MULTISELLS[1])))
return;
MultiSellEntry entry = prepareEntry(merchant, templateEntry, applyTaxes, maintainEnchantment, enchantment);
@@ -290,13 +320,13 @@
L2ItemInstance itemToTake = inv.getItemByItemId(e.getItemId()); // initialize and initial guess for the item to take.
if (itemToTake == null)
{ //this is a cheat, transaction will be aborted and if any items already taken will not be returned back to inventory!
- _log.severe("Character: " + player.getName() + " is trying to cheat in multisell, merchatnt id:" + merchant.getNpcId());
+ _log.severe("Character: " + player.getName() + " is trying to cheat in multisell, merchatnt id:" + (merchant == null ? "null" : merchant.getNpcId()));
return;
}
if (itemToTake.isWear())
{//Player trying to buy something from the Multisell store with an item that's just being used from the Wear option from merchants.
- _log.severe("Character: " + player.getName() + " is trying to cheat in multisell, merchatnt id:" + merchant.getNpcId());
+ _log.severe("Character: " + player.getName() + " is trying to cheat in multisell, merchatnt id:" + (merchant == null ? "null" : merchant.getNpcId()));
return;
}
General.properties (To define range of multisells that will be available without npc)
Code
+# Choose range of multisells that will be available through the BBS
+# Default: 10001:10030 (That means: from 10001 to 10030)
+AllowedMultisells = 10001:10030
Here is an example of bbs links:
<a action="bypass -h _bbsmultisell;1;300974001"><font color="aadd77">Forbidden Multisell</font></a><br>
<a action="bypass -h _bbsmultisell;1;10001"><font color="aadd77">Allowed Multisell</font></a><br>
<a action="bypass -h _bbsscripts;1;ClassMaster:list"><font color="aadd77">Class Master</font></a><br>
For script: "ClassMaster" is a quest name, list - command to onAdvEvent() method of this quest.
Помогите разобраться, это вроде как патч для того чтоб в каммунити был и бафер и тп и гмшоп. Но вот куда и как запихать, я не могу понять...
General.properties (To define range of multisells that will be available without npc)
Code
+# Choose range of multisells that will be available through the BBS
+# Default: 10001:10030 (That means: from 10001 to 10030)
+AllowedMultisells = 10001:10030
надо просто в General.properties вписать все это? До компиляции или после?
2
Here is an example of bbs links:
<a action="bypass -h _bbsmultisell;1;300974001"><font color="aadd77">Forbidden Multisell</font></a><br>
<a action="bypass -h _bbsmultisell;1;10001"><font color="aadd77">Allowed Multisell</font></a><br>
<a action="bypass -h _bbsscripts;1;ClassMaster:list"><font color="aadd77">Class Master</font></a><br>
For script: "ClassMaster" is a quest name, list - command to onAdvEvent() method of this quest.
Вообще я не знаю, где ты такую странную комунку отрыл=) В конфиге, просто без плюсов пихаешь, уже на готовой сборке, т.к. при компиле они не нужны. А линки в ХТМЛ комунки добавляешь.