![]() |
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) |
RE: Quest repeat - WRWR - 08-14-2012 11:35 AM using FOR you are far away from perfectionism ![]() 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 perfectionismThink 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? ![]() ![]() 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. 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:<GETARGVX X,<TAG.COMPLETEDQUESTS>>(08-13-2012 11:22 AM)Extreme Wrote: Or you can store the Number ID of all completed quests in only one tag. Where x is the position. PHP Code: [FUNCTION GETARGVX] To get the position : PHP Code: [FUNCTION GETARGVPOS] 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. ![]() Thank you very much, Extreme. I owe you one. ![]() 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.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 ![]() 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>)Sure, but, looking for quest 1, it will match in quest 10, so isn't perfect. |