I'm just testing the extender) I couldn't find any critical issues.
I found my own error due to which the autoloot function was not active:
just a syntax error, case-sensitive. You can't use a capital letter in the Myext.ini settings.
AutoLootMobDrop = true. (parameter true must necessarily be with a lowercase letter)
DISCORD :
utchiha_market
telegram :
https://t.me/utchiha_market
SELLIX STORE :
https://utchihamkt.mysellix.io/
Join our server for more products :
https://discord.gg/hood-services
https://campsite.bio/utchihaamkt
Question
tazerman2
hello guys i try to make this code to ask join party. but i can't and now is make a party without ask
hello guys i try to make this code to ask join party. but i can't. and now i have make a party without ask
how to make it join party only if player click ok in ask;
my code is this.
private static void createNewParty(PcInstance receiver, PcInstance requestor) { // Joining Party if (!receiver.isProcessingRequest()) { Party party = receiver.getParty(); if (party == null) receiver.setParty(party = new Party(receiver, requestor, LootRule.ITEM_RANDOM_SPOIL)); requestor.joinParty(party); } else { requestor.sendPacket(SystemMessageId.WAITING_FOR_ANOTHER_REPLY); } }
4 answers to this question
Recommended Posts