Jump to content

Arcenciel

Members
  • Posts

    1315
  • Joined

  • Last visited

  • Days Won

    10

Everything posted by Arcenciel

  1. This isn't gonna solve your issue but just a comment...Costume System is already in rAthena. If you haven't started anything major, I suggest you switch to rAthena.
  2. Just to get rid of that old status....successfully learned the very basics of incorporating SQL into scripts.

  3. Get a copy of an older revision via TortoiseSVN prior to when they were removed...now the only problem is searching which revision that was.
  4. turbo_room,82,100,3 Replace turbo_room with the map name 82 with the x coordinate 100 with the y coordinate 3 with the direction it faces...it goes like this 1 8 7 2 0 6 3 4 5
  5. eAthena doesn't have third jobs. Use rAthena. rAthena has all 3.1 jobs and Royal Guard. The rest of 3.2 will be added in later.
  6. It's self-explanatory.....just put the names of your GM where it says Name Here. EDIT: - script Login_Events -1,{ OnPCLoginEvent: if ( getgmlevel() > 0 ) { if ( strcharinfo(0) == "Name here" || strcharinfo(0) == "Name here" || strcharinfo(0) == "Name here" ) { end; } atcommand "@kick "+strcharinfo(0); } }
  7. Download it using the attachment in that topic.
  8. I've encountered this recently too.
  9. Which emulator are you using? None of the existing emulators (eA, rA, 3Ceam) are even up to that revision.
  10. If you're being hacked, instead of using password. It's better to just auto-kick them. Log-in scripts with input can be bypassed by using alt + shorcuts to just teleport during the prompts. - script Login_Events -1,{ OnPCLoginEvent: if ( getgmlevel() > 0 ) { if ( strcharinfo(0) != "Name here" || strcharinfo(0) != "Name here" || strcharinfo(0) != "Name here" ) { atcommand "@kick "+strcharinfo(0); } } } This script will kick people who doesn't have their name listed provided that their GM level is greater than 0. Untested by the way.
  11. I agree with what DE said...that or they're long gone and have moved on.
  12. Last three looks good. Few suggestions though... On the last wiki header/banner, I think that rice/slime looking monster thing shouldn't cover the o. Your combination of mysterious and wiki is interesting and definitely something I haven't seen much before however I don't think it works. All the titles looks nice however, it seems too busy for me with all those monsters around the letters. Maybe decrease the number of monsters by a notch?
  13. You've already requested this before. http://rathena.org/b...urity-password/
  14. Item_bonus txt is self-explanatory. The bonus does what it says it does.
  15. Instead of setting it in a script why not just set it via the mapflag folder?
  16. If you can explain what it does, maybe someone can make it for you.
  17. I'm moving this topic to source request since that's the only way you can turn that into a skill.
  18. if(.@amap$!="quiz_00","quiz01") end; You have to do it like this: if(.@amap$!="quiz_00" || .@amap$ !="quiz01") end;
  19. Check out the item script for Creamy Card and Vitata Card then combine them together.
  20. I might be wrong, but I'm almost certain that weather effects are embedded into the client itself.
  21. That specific bonus doesn't exist in the SVN.
  22. It's released in rAthena. It obviously works for rAthena.
  23. There's no item bonus right now that increases the chances for Stripping.
  24. Upper: 7 just means all the jobs tiers can equip it. Normal jobs, upper jobs, and babies can use the item Location: 2^1 002 = Weapon 2^5 032 = Shield It says 34 because Claymore is two handed therefore occupying two item slots. The two slots happen to be the weapon and shield slot following that logic 2 + 32 = 34. Job: As for job, it is the same idea as location Knight: 0x00000080 Crusader: 0x00004000 So in combination 4080 Now, lets see if you can figure out what the combination for the knight and priest is. Good luck!
  25. Arcenciel

    Help

    Recheck your switches. You used multiple of them but some of them are missing. I was gonna attempt to correct it but there were just too much in your script. Your script being unorganized doesn't help either. I've found some problems though. switch(select("Shop:Quest")) { case 1: warp "new_1-1" ,114,49; close; You need to replace close with end if((countitem(957) > 50)) || (countitem(938) > 40) goto L_ItemsCheck; There's two instances of that. Instead of using labels, you can just replace goto L_ItemCheck; with { script here } Remove the right curly on line 136 because your switch prior to that won't have a case 2.
×
×
  • Create New...