![]() |
Top 3 - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d) +--- Forum: Script Help (/Forum-Script-Help) +--- Thread: Top 3 (/Thread-Top-3) |
Top 3 - Alias - 07-12-2012 10:21 PM Could some1 give me working function that check top 3 killers in server by kills and wrote them in serv log ? Thanks! ![]() RE: Top 3 - Shaklaban - 07-13-2012 02:02 AM PHP Code: [function allplayers] not tested, also its not a fastest one. for best performance you can store kills of all players in mysql. you can't call that function from players, for example you can't use this method for top 10 gumps because it will create lag on your server. maybe you can run this function in every world save etc. RE: Top 3 - Alias - 07-13-2012 02:52 AM All is working but getting error Undefined symbol ' ' for this line if (<kills> >= <var.kills_<dlocal._for>>) But cuild kills be stored as tag.ffaeventpoint ? becouse i needed this funtion for event to know with player have more tag.ffaeventpoint and could use only for players who have event e_ffa_tournament , but was hard to explane .. ![]() RE: Top 3 - Shaklaban - 07-13-2012 03:30 AM you can use var0 on the line which gives error. you can store them on a tag of a item. RE: Top 3 - Alias - 07-13-2012 04:15 AM Ok i made with tag but it dont check all players becouse my account have 530 points but i am not in the top 3 even i should be in ... RE: Top 3 - Alias - 07-13-2012 10:34 PM Firt of all sorry for double posting. But i found funtion with dialog with works just the way i need it to work, but could some1 give me function for these funtion that when write that funtion it found first 3 places and do following 1 place get f_first, 2 place get f_second and 3 place get f_third Thanks here functions [FUNCTION status] IF (<ISEVENT.E_ffa_event>) || (<ISGM>) REGION.ALLCLIENTS Calc_TopPoints CALL Sort_Players DIALOGCLOSE d_point DIALOG d_point RETURN 0 ENDIF SYSMESSAGE @50 You cant use this command here [FUNCTION Calc_TopPoints] IF <ISGM> RETURN 0 ENDIF IF (0<ACCOUNT.PLEVEL> > 1) && (0<ACCOUNT.PLEVEL> <4) RETURN 0 ENDIF SRC.TAG0.Players +=1 TRY SRC.TAG.PUID_<EVAL <SRC.TAG0.Players>>=<UID> TRY SRC.TAG.P_<EVAL <SRC.TAG0.Players>>=<tag.qpoint> //ćåķåščšóåņ ī÷źč źšóņīńņč ļī ńóģģå ńźčėīā [FUNCTION Sort_Players] LOCAL.Top=<SRC.TAG0.Players> FOR i 1 <EVAL <LOCAL.Top>> FOR j <EVAL <LOCAL.i>> <EVAL <LOCAL.Top>> IF (<TAG0.P_<EVAL <LOCAL.i>>><<TAG0.P_<EVAL <LOCAL.j>>>) LOCAL.Temp=<TAG0.P_<EVAL <LOCAL.i>>> TRY TAG.P_<EVAL <LOCAL.i>>=<TAG0.P_<EVAL <LOCAL.j>>> TRY TAG.P_<EVAL <LOCAL.j>>=<LOCAL.Temp> LOCAL.Temp1=<TAG0.PUID_<EVAL <LOCAL.i>>> TRY TAG.PUID_<EVAL <LOCAL.i>>=<TAG0.PUID_<EVAL <LOCAL.j>>> TRY TAG.PUID_<EVAL <LOCAL.j>>=<LOCAL.Temp1> ENDIF ENDFOR ENDFOR [DIALOG d_point] 0,0 resizepic 0 0 3600 280 <EVAL (100+(20*<SRC.TAG0.Players>))> FOR i 1 <EVAL <SRC.TAG0.Players>> dtext "+40 *20 100 <EVAL <LOCAL.i>>. <UID.<SRC.TAG0.PUID_<EVAL <LOCAL.i>>>.NAME>" serv.log <EVAL <LOCAL.i>>. <UID.<SRC.TAG0.PUID_<EVAL <LOCAL.i>>>.NAME> dtext "+200 +0 80 <EVAL <SRC.TAG0.P_<EVAL <LOCAL.i>>>>" SRC.TRY TAG.PUID_<EVAL <LOCAL.i>>= //óįčšąåģ ēą ńīįīé SRC.TRY TAG.P_<EVAL <LOCAL.i>>= //óįčšąåģ ēą ńīįīé ENDFOR dtext +50 +50 100 Total Points: dtext +150 +50 80 <EVAL <VAR.QPOINT>> SRC.TAG.Players= |