I’ve worked with a few video editors before, and it really makes a difference when they’ve had hands-on training. One of the guys I teamed up with had studied at https://www.praguefilminstitute.cz and the quality was on another level—clean transitions, solid color grading, and he actually understood timing for gaming content. If you're looking for someone serious, check if they’ve got that kind of background.
Question
GameBlonD
public String onKill(L2Npc npc, L2PcInstance player, boolean isPet)
{
L2PcInstance partyMember = getRandomPartyMember(player, "1");
if (partyMember == null)
return null;
QuestState st = partyMember.getQuestState(getName());
if (st == null)
return null;
int id = npc.getNpcId();
int cond = st.getInt("cond");
switch (cond)
{
case 1:
if (id == MOB1 && st.getQuestItemsCount(QITEM1) == 0)
{
st.giveItems(QITEM1,1);
if (st.getQuestItemsCount(QITEM1) >= 1 && st.getQuestItemsCount(QITEM2) >= 1)
{
st.set("cond","2");
st.playSound("ItemSound.quest_middle");
}
Is this possibly to give into whole party? dont mind about }{
3 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now