SphereCommunity
Vote system tag account? - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: Script Requests (/Forum-Script-Requests)
+--- Thread: Vote system tag account? (/Thread-Vote-system-tag-account)

Pages: 1 2


RE: Vote system tag account? - RanXerox - 10-25-2012 02:33 PM

You never need to eval multiple times:

<EVAL (<ACCOUNT.TAG0.TimeThatAnotherVoteIsAllowed>-<SERV.TIME>)/3600>


RE: Vote system tag account? - Lazarus - 10-25-2012 02:49 PM

(10-25-2012 02:33 PM)RanXerox Wrote:  You never need to eval multiple times:

<EVAL (<ACCOUNT.TAG0.TimeThatAnotherVoteIsAllowed>-<SERV.TIME>)/3600>

NICE! THANKS!

you are my heroes ranx and mordaunt! Smile


RE: Vote system tag account? - Hayur - 04-14-2015 03:53 PM

I know this is pretty old, but when i use this, it will work only for 2 character, if i make a new character he will be able to vote too, the ACCOUNT.TAG0 should set the tag to the account no?


RE: Vote system tag account? - XuN - 04-14-2015 04:44 PM

What are you exactly using? Copy us the code so we can help, so much solutions were given here so we must know which one are you using.


RE: Vote system tag account? - Hayur - 04-14-2015 09:51 PM

Code:
[FUNCTION vote]
IF (<ACCOUNT.TAG0.TimeThatAnotherVoteIsAllowed>==0) || (<ACCOUNT.TAG0.TimeThatAnotherVoteIsAllowed> < <SERV.TIME>)
  SRC.SYSMESSAGE @0028,3,1 Thank you for your votes!! Please completes all the process!
  WEBLINK sphereserver.net
  ACCOUNT.TAG0.TimeThatAnotherVoteIsAllowed=<EVAL <SERV.TIME>+86400>
ELSE
  SYSMESSAGE @0028,3,1 You are not allowed to vote for another <EVAL(<ACCOUNT.TAG0.TimeThatAnotherVoteIsAllowed>-<SERV.TIME>)/3600> hours.
   ENDIF

and in player event:

Code:
IF (<eval <serv.time>-<src.account.tag0.TimeThatAnotherVoteIsAllowed>/10> > 86400)
   src.account.tag0.TimeThatAnotherVoteIsAllowed=
endif


Everything is fine, except that the tag0 is applied only to the character, when the user switch to an other character he can use the .vote command too and get his own timer too. Something i did wrong ? (i'm using sphere 56b but i tried many 56b/56c and i got the same problemes with all of them)


RE: Vote system tag account? - XuN - 04-14-2015 11:23 PM

I just added the vote function, typed it with one character and worked, then logged in with another character in the same account and I couldn't vote because of the tag.

May you have different versions of this function added in some other places?


RE: Vote system tag account? - Hayur - 04-14-2015 11:55 PM

apparently i fixed the code while i copied it here lol, sorry for the lost of time!