SphereCommunity
Problem with Quest Button - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: Script Help (/Forum-Script-Help)
+--- Thread: Problem with Quest Button (/Thread-Problem-with-Quest-Button)



Problem with Quest Button - victorstelzer - 07-12-2012 10:55 AM

When you click the quest, the option does not appear


RE: Problem with Quest Button - WRWR - 07-12-2012 05:07 PM

add your own dialog to
ON=@UserQuestButton


RE: Problem with Quest Button - Skul - 07-14-2012 12:57 AM

The feature is incomplete, you have to find or code a quest system of your own.


RE: Problem with Quest Button - Anarch Cassius - 07-14-2012 05:16 AM

There is one in the SCP that is quite good.


RE: Problem with Quest Button - victorstelzer - 07-14-2012 11:42 AM

How to make dialog

[FUNCTION questbutton]
SDIALOG button
ON = @ UserQuestButton


RE: Problem with Quest Button - Alias - 07-15-2012 07:46 PM

Hi, i have problem with slaying quest i try this one, but it doesnt give me +1 kill when i kill Salvia or Dryad ... Confused

QUEST_4_NAMELOCALIZED 1074433 //Bound to the Land
QUEST_4_TEXTLOCALIZED 1074434 //Quest history
QUEST_4_TEXTCOMPLETELOCALIZED 1074437
QUEST_4_TEXTUNCOMPLETELOCALIZED 1074435
QUEST_4_TEXTREFUSELOCALIZED 1074436
QUEST_4_OBJECTIVEAMOUNT 2
QUEST_4_OBJECTIVE1_TYPE 2
QUEST_4_OBJECTIVE1 12 c_dryad
QUEST_4_OBJECTIVE2_TYPE 2
QUEST_4_OBJECTIVE2 1 c_saliva
QUEST_4_PRIZES 1
QUEST_4_PRIZETYPE1 1 //item
QUEST_4_PRIZEID1 i_dryads_blessing Dryad's Blessing.


RE: Problem with Quest Button - RanXerox - 07-16-2012 02:34 AM

Did you read the instructions?

Step 3: Add
EventsPet=e_quest_kill_fix
to sphere.ini under //Events related to all NPCs


RE: Problem with Quest Button - Alias - 07-16-2012 05:21 AM

(07-16-2012 02:34 AM)RanXerox Wrote:  Did you read the instructions?

Step 3: Add
EventsPet=e_quest_kill_fix
to sphere.ini under //Events related to all NPCs
Where to find this event becouse i dont have it anywhere ...
Thanks.


RE: Problem with Quest Button - RanXerox - 07-16-2012 07:52 AM

http://code.google.com/p/sphere-community-pack/source/browse/trunk/scripts/add-on/sphere_events_npc.scp


RE: Problem with Quest Button - Alias - 07-16-2012 06:54 PM

(07-16-2012 07:52 AM)RanXerox Wrote:  http://code.google.com/p/sphere-community-pack/source/browse/trunk/scripts/add-on/sphere_events_npc.scp
Is this right ? If so than something else isnt working for me ...
Code:
[EVENTS e_quest_npc_fix]

on=@death
ref42 = <attacker.max>
if (<ref42.tag0.quests>)
    for <ref42.tag0.quests>
        for x 1 <def.quest_<ref42.dtag0.quest<dlocal._for>.id>_objectiveamount>
            if <def.quest_<ref42.dtag0.quest<dlocal._for>.id>_objective<dlocal.x>_type> == 2
                if (<baseid> == <streat <def.quest_<ref42.dtag0.quest<dlocal._for>.id>_objective<dlocal.x>>>)
                    if (<ref42.tag0.quest<dlocal._for>.slay<streat <def.quest_<dtag0.quest<dlocal._for>.id>_objective<dlocal.x>>>>)
                        if !(<isempty <def.quest_<ref42.dtag0.quest<dlocal._for>.id>_objective<dlocal.x>_location>>)
                            if (strmatch(*<def.quest_<dtag0.quest<dlocal._for>.id>_objective<dlocal.x>_location>*,<region.name>))
                            ref42.tag.quest<dlocal._for>.slay<streat <def.quest_<dtag0.quest<dlocal._for>.id>_objective<dlocal.x>>> --
                            endif
                        else
                        ref42.tag.quest<dlocal._for>.slay<streat <def.quest_<dtag0.quest<dlocal._for>.id>_objective<dlocal.x>>> --
                        endif
                        if !(<ref42.tag0.quest<dlocal._for>.slay<streat <def.quest_<ref42.dtag0.quest<dlocal._for>.id>_objective<dlocal.x>>>>)
                        sysmessage <def.scp.quest_complete>
                        else
                        sysmessage @,,2 1075051,<ref42.dtag0.quest<dlocal._for>.slay<streat <def.quest_<ref42.dtag0.quest<dlocal._for>.id>_objective<dlocal.x>>>>
                        endif
                    endif
                endif
            endif
        endfor
    endfor
endif

on=@deathcorpse
ref94 = <attacker.max>
if <ref94.tag0.quests>
    for x 1 <ref94.tag0.quests>
        for y 1 <def.quest_<ref94.dtag0.quest<dlocal.x>.id>_objectiveamount>
            if <def.quest_<ref94.dtag0.quest<dlocal.x>.id>_objective<dlocal.y>_type> == 6
                if <baseid> == <streat <def.quest_<ref94.dtag0.quest<dlocal.x>.id>_objective<dlocal.y>>>
                    if <isempty <def.quest_<ref94.dtag0.quest<dlocal.x>.id>_objective<dlocal.y>_location>>
                    ref94.f_quest_gotitem <uid>,<local.x>,<local.y>
                    else
                        if (strmatch(<ref94.region.name>,*<def.quest_<ref94.dtag0.quest<dlocal.x>.id>_objective<dlocal.y>_location>*))
                        ref94.f_quest_gotitem <uid>,<local.x>,<local.y>
                        endif
                    endif
                endif
            endif
        endfor
    endfor
endif

[EOF]