Jump to content

Mercurial

Members
  • Posts

    241
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Mercurial

  1. Ok Imma get my hands dirty, I can't stand watching you while the other nabs ignore u ( So first of all, setd,getd doesn't construct an array for you, and you can't ( thats why your getarraysize failed here ) what happens in setd,getd is you basically modify the variable names as "strings", basically the "address" of your variables, the reason why many suggest to use this instead, is because you can simulate array out of it e.g ".x1, .x2, .x3" for(set .idx,0; .idx< 256; set .idx,.idx+1) { setd ".npcVarArray"+.idx,<somevalue>; } here we create 256 variables not a single array, e.g .npcVarArray0,..... .npcVarArray255 but this is very different from an array, they are basically different individuals(variables) but you just know how to refence them by index "simulating arrays" because of the way you named them now if we would like to get the values we can simply , for(set .idx,0; .idx< 256; set .idx,.idx+1) { mes getd( ".npcVarArray"+.idx); } it is obvious that you will not be able to use [] heres (only the core source gods can confirm this) maybe because parser treats this as real arrays ( NOT REALLY SURE GOD DAMN IT XD) so here in your example : GetArraySize(getd("$Events")); you are not accessing the entire array we just created, you are accessing a single element $Events variable nothing else, there is obviously no way to track the count of our variables now but we can now simulate somewhat "object" mindset here we can do push_array(arraysource,valueTopush); internally we can do something like setd ($arraySourceName+"Count"), ($arraySourceName+"Count") + 1; // this will increase our setd collection count setd ($arraySourceName+getd(arraySourceName+Count)),value); // we set the value being held in this index we can now do array_count("arrayNamehere"); return getd($arraySourceName+"Count"); and can do the rest like pop_array() set .tempResult = getd( ($arraySourceName+getd(arraySourceName+Count))); setd ($arraySourceName+"Count"), ($arraySourceName+"Count") - 1; // this will decrease our setd collection count setd ($arraySourceName+getd(arraySourceName+Count)), <null / 0 / empty string >); // we set the value being held in this index to empty or something else that means nothing return .tempResult; and what else you can do with that we can even simulate a Hashtable or Dictionary here but that will get more complicated and slow ROFL Thank you very much
  2. thats why the topic says you need to have scripting knowledge to understand
  3. awesome , I'm definitely going to be using this when theres a need to do so
  4. Mercurial

    Heya

    lol ^, Sup Muad , please bless us with your almighty powers
  5. Its working great for me , Please keep this up to date always, Thanks!
  6. Commodore 64 x86 or x64?
  7. I know you! you're that donator guy , I asked a vps from you way back rofl
  8. Barbie Dercurial or DEpoque?
  9. Boorbies ( cause its sounds like boobies ) rAthena or eAthena? :)WIN!
  10. It doesn't necessarily mean Open-Source, because there will be some server side codes. and also , you are not able to read obfuscated / minified / packed javascript. , In theory you can decompile it but it won't be easy
  11. and they can use the same feature set ,
  12. please read http://rathena.org/board/topic/54316-rejected-server-3-to-all-new-registered/page__view__findpost__p__60376 thats how you adjust current autoincrement value.
  13. Hi, to solve this, execute this MySQL Query where 2003999 is the last account_id+1; Tell us if it worked
  14. why do you need 2008 when 2010? http://www.microsoft.com/visualstudio/en-us/products/2010-editions/express
  15. Welcome back Usako , and wow congratulations your are now Mrs. Rico
  16. Imma post here just for reference http://www.eathena.w...&pid=1061097400 into: Edit: Most recent clients even use a delay of 2500ms. Also before you ask for a hex, it is client specific; if you are skilled with a disassembler, look for MOV R32,35Fh (where R32 can be any 32bit register), there should be only one in the whole client.
  17. Re diff your client, and there should be an option to ignore pallete change for wedding sprites. Good luck. If you can't find it , post your diff options here
  18. aw ( cheat thats vps D: XD you win man D:
  19. i said download speed though not internetspeed , screenshot or it didn't happen
×
×
  • Create New...