Dynasty Posted November 28, 2013 Group: Members Topic Count: 24 Topics Per Day: 0.01 Content Count: 151 Reputation: 5 Joined: 11/09/12 Last Seen: September 14, 2014 Share Posted November 28, 2013 (edited) hi Someone can tell me the best way to make a achievenment system? It is just tell me i do all the scriping part (without src editting ) I call for help because i want to do it, but i dont know how Bumm :c? Edited November 27, 2013 by Dynasty Quote Link to comment Share on other sites More sharing options...
nanakiwurtz Posted November 28, 2013 Group: Members Topic Count: 81 Topics Per Day: 0.02 Content Count: 1654 Reputation: 583 Joined: 08/09/12 Last Seen: January 14, 2020 Share Posted November 28, 2013 What kind of achievement system do you mean, Dynasty? Quote Link to comment Share on other sites More sharing options...
Dynasty Posted November 28, 2013 Group: Members Topic Count: 24 Topics Per Day: 0.01 Content Count: 151 Reputation: 5 Joined: 11/09/12 Last Seen: September 14, 2014 Author Share Posted November 28, 2013 (edited) well... is like this: achievement: kill 100 poring, kill 100 fabre, get the max lvl.... if u won a 100 achievement you will win a reward for that also you can see you progress (sql i think) ex: - script first_login -1,{ OnInit: set .var,1; end; OnPCLoginEvent: if((.var ? #fst_login : fst_login) == 1 && Class == Job_Novice && BaseLevel != 1 && JobLevel != 1) end; set (.var ? #fst_login : fst_login),1; set #poring1$,"[Locked]"; end; } - script KillPoring1 -1,{ OnNPCKillEvent: if(#poring1$ == "[Locked]"){ getmapxy(@mapa$,@x,@y,0); if(killedrid == 1002) { set killpcount,killpcount+1; if(killpcount >= 50) { set killpcount,0; // Evita que pase de la cantidad maxima. dispbottom "Felicidades has desbloqueado Killerporing!"; set #poring1$,"[Unlocked]"; attachnpctimer; initnpctimer; end; OnTimer10: specialeffect2 75; cutin "sign_01",2; end; Ontimer9000: cutin "",255; stopnpctimer; detachnpctimer; end; } end; } end; }else if(#poring1$ == "[Unlocked]"){ end; } } When a player get the achievement (kill x amount of porings) the npc will show a cutin that you can also still playing when you have the cutin on the screen.. but the thing is how is the best way to do this? Edited November 28, 2013 by Dynasty Quote Link to comment Share on other sites More sharing options...
Dynasty Posted November 29, 2013 Group: Members Topic Count: 24 Topics Per Day: 0.01 Content Count: 151 Reputation: 5 Joined: 11/09/12 Last Seen: September 14, 2014 Author Share Posted November 29, 2013 bum -w- Quote Link to comment Share on other sites More sharing options...
Question
Dynasty
hi
Someone can tell me the best way to make a achievenment system?
It is just tell me i do all the scriping part (without src editting
)
I call for help because i want to do it, but i dont know how
Bumm :c?
Edited by DynastyLink to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.