SphereCommunity
Quest repeat - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: Quest repeat (/Thread-Quest-repeat)

Pages: 1 2 3


RE: Quest repeat - WRWR - 08-14-2012 11:35 AM

using FOR you are far away from perfectionism Smile


RE: Quest repeat - Extreme - 08-14-2012 11:49 AM

(08-14-2012 11:35 AM)WRWR Wrote:  using FOR you are far away from perfectionism Smile
Think better, FOR is for things that are not common.
If you don't want to store lots of TAGs, the best way is using FOR.
But, each one knows what is better for them.
If you see my FOR, its breakable by RETURN 1 if the quest is already completed.
Or just use defnames or mysql or whatever...
I know one thing: for this problem, FOR is faster than MYSQL requests.
FOR is for standards, if you know the template, FOR is the best thing to use.

But of course, I can be wrong or not, just my opinion.


RE: Quest repeat - Wap - 08-14-2012 01:47 PM

If you have a religious necessity to use one variable, i think the better way is LISTs. There you have FINDELEM and don't need to to handreds of loops. But really, I think my method(above) is the best one - the simple IF check and minimal use of memory. 10 tags? But what harm do 10 tags? Smile My 10 tags will use less memory, than your 1 tag. Smile


RE: Quest repeat - Gil Amarth - 10-05-2012 08:55 PM

(08-13-2012 11:22 AM)Extreme Wrote:  Or you can store the Number ID of all completed quests in only one tag.
And check if the Number ID is in the tag to avoid repeat it.

When complete:
Code:
TAG.COMPLETEDQUESTS .= ",<QUESTNUMBER>"
To check if the quest is already completed:
Code:
[FUNCTION F_QUESTS_CHECKCOMPLETE]
LOCAL.QUESTNUMBER <ARGS>
ARGS <TAG.COMPLETEDQUESTS>
FOR 0 <EVAL <ARGV>-1>
IF STRMATCH(<LOCAL.QUESTNUMBER>,<ARGV[<LOCAL._FOR>]>)
  RETURN 1
ENDIF
ENDFOR
RETURN 0
Usage F_QUESTS_CHECKCOMPLETE <QUESTNUMBER>

I´m updating my scripts with this system.

What is the best method to repeat a completed quest?
How do you extract a single <LOCAL.QUESTNUMBER> from all TAG.COMPLETEDQUESTS string?


RE: Quest repeat - Extreme - 10-05-2012 10:19 PM

(10-05-2012 08:55 PM)Gil Amarth Wrote:  
(08-13-2012 11:22 AM)Extreme Wrote:  Or you can store the Number ID of all completed quests in only one tag.
And check if the Number ID is in the tag to avoid repeat it.

When complete:
Code:
TAG.COMPLETEDQUESTS .= ",<QUESTNUMBER>"
To check if the quest is already completed:
Code:
[FUNCTION F_QUESTS_CHECKCOMPLETE]
LOCAL.QUESTNUMBER <ARGS>
ARGS <TAG.COMPLETEDQUESTS>
FOR 0 <EVAL <ARGV>-1>
IF STRMATCH(<LOCAL.QUESTNUMBER>,<ARGV[<LOCAL._FOR>]>)
  RETURN 1
ENDIF
ENDFOR
RETURN 0
Usage F_QUESTS_CHECKCOMPLETE <QUESTNUMBER>

I´m updating my scripts with this system.

What is the best method to repeat a completed quest?
How do you extract a single <LOCAL.QUESTNUMBER> from all TAG.COMPLETEDQUESTS string?
<GETARGVX X,<TAG.COMPLETEDQUESTS>>
Where x is the position.

PHP Code:
[FUNCTION GETARGVX]
IF <
ARGV[0]> == -1
 
RETURN <EVAL <ARGV>-1>
ELSE
 RETURN <
ARGV[<ARGV[0]>]>
ENDIF 

To get the position :
PHP Code:
[FUNCTION GETARGVPOS]
FOR 
P 1 <EVAL <ARGV>-1>
 IF 
STRMATCH(<ARGV[0]>,<ARGV[<dLOCAL.P>]>)
  RETURN <
dLOCAL.P>
 ENDIF
ENDFOR
RETURN -

<GETARGVPOS <STRINGTOSEARCH>,<STRING>>


RE: Quest repeat - Mordaunt - 10-06-2012 12:19 AM

If you are making repeatable quests... why would you write their value into a tag that records which quests have been completed and prevents players from repeating them?


RE: Quest repeat - Gil Amarth - 10-06-2012 02:47 AM

Really I don´t want this script for quests, but the code it´s the same for other projects which I want store in only one tag. Tongue

Thank you very much, Extreme. I owe you one. Veryhappy


RE: Quest repeat - Extreme - 10-06-2012 03:03 AM

(10-06-2012 12:19 AM)Mordaunt Wrote:  If you are making repeatable quests... why would you write their value into a tag that records which quests have been completed and prevents players from repeating them?
It can be used in many systems, just need know what system is better to use hehe
(10-06-2012 02:47 AM)Gil Amarth Wrote:  Really I don´t want this script for quests, but the code it´s the same for other projects which I want store in only one tag. Tongue

Thank you very much, Extreme. I owe you one. Veryhappy
Nope!


RE: Quest repeat - Avatar - 10-06-2012 05:57 AM

I think you dont need even for argv and for cycle to check whether your tag consist of what you want to seeking for. That is so simple Smile

Whether you check for argn or argv or even args , it is up to you.

IF STRMATCH(*<argn>*,<TAG.COMPLETEDQUESTS>)
RETURN 1
ENDIF
ENDFOR
RETURN 0


RE: Quest repeat - Extreme - 10-06-2012 06:03 AM

(10-06-2012 05:57 AM)Avatar Wrote:  IF STRMATCH(*<argn>*,<TAG.COMPLETEDQUESTS>)
RETURN 1
ENDIF
ENDFOR
RETURN 0

I think you dont need even for argv and for cycle to check whether your tag consist of what you want to seeking for.
Sure, but, looking for quest 1, it will match in quest 10, so isn't perfect.