Jump to content

Legato

Members
  • Posts

    87
  • Joined

  • Last visited

Everything posted by Legato

  1. Thanks for replying. I've seen that. But, I can't download the file. "Reported Attack Page!" Do you have the file? If you do, can you upload it here? Thanks.
  2. I've searched through the forum and opened a topic about this on eA. I hope someone can give me the link for this one. Tia.
  3. D: I think my first post just got ignored. Does anyone know how to fix it? Argh. I had to bump. Sorry, it's been 2 days.
  4. That would be really great. Well, then I hope you get bored. Just kidding. Haha!
  5. nice that worked. but now there's another bug >.< so if you have a character that has a cart on, you will notice that all other characters on that account will also show the cart button in the equipment window (alt+q) and also the OFF button. alt+w will work for those characters although no items can be put in. so far it doesn't seem like a bug that can be abused, but it would be nice to have it fixed. I think it only happens when you reconnect your character with cart and then, login using different character.
  6. I'm using this client as well, but I get this error Every time I try to connect. I'm using the same packets.
  7. So, do I need to be worried about it and do you know how to fix it?
  8. I did not change anything on the script. That debug mes only appears when I adjust the level of a GM. From level 99 to 0 and then log out.
  9. Conflicts already posted a link of the script. You should've seen it if you were reading other's posts. And I did not know that debug mes was caused by that script in the first place that's why I had provided a screen shot of the error.
  10. I wrote it that way, Emistry. Thanks for pointing it out, though. You can put either -0 or -1. Return -1 will show the @storage / @die failed message when a player tries to use any of these 2 commands inside a PvP map. While return -0 won't show any failed message. @Tr0n, you don't have to set any mapflag. With that piece of code, no one will be able to use the commands inside a pvp map(including WoE maps, and when you use @pvpon). And Emistry's code would only work on the maps that has a mapflag pvp enabled.
  11. if( map_flag_vs(sd->bl.m) ) { clif_displaymessage(fd,"Sorry, you can't use this command on a PvP map."); return -0; } Paste it under your @die and @storage command. Don't forget to recompile, though.
  12. Ohh, right. It's happened after I installed that script.(Didn't read the script codes,though. ) Thanks, Conflicts and Emistry. EDIT : So, does anyone have any idea why it only happens when I adjust the gm level and then log out?
  13. Emistry is right. You should read the guide from the link he provided. You may learn how to add a delay for other commands. Anyway, here's my reply to your question. Add this piece of code under nullpo_retr(-1, sd); on every command you want to have a delay. if( DIFF_TICK(gettick(),sd->pkmode_cd) < 60000 ) { char timeleft[100]; sprintf(timeleft,"@pkmode is cooling down, you may use it again after %d seconds",60-(DIFF_TICK(gettick(),sd->pkmode_cd)/1000)); clif_displaymessage(fd,timeleft); return -0; } sd->pkmode_cd = gettick(); And on pc.h unsigned short mapindex; unsigned char head_dir; //0: Look forward. 1: Look right, 2: Look left. unsigned int client_tick; + unsigned int pkmode_cd; You just have to change every pkmode_cd for other commands.
  14. First off, I did not get this message from rAthena's SVN. But, I figured I'd post it here anyway because, lots of people are active in this forum. Here's a screen shot of the said error Happens when I use the @adjgmlvl 0 <player's name> command on a GM character and then log off. Tia.
  15. This is nice. You don't have set every items you want to block on the same map. Thanks. :]
  16. I have everything modified on my item_db.txt and item_db2.txt. Weapons[4] and Armor[2]. And then, I decided to return the items to their original state. How is it possible to make the server not read the card(s) compounded on a non-slotted equipment? Say, for example, a hat[0] with 2 kiel cards back on the time I had everything 4 and 2 slots. I tried something on clif_addcards but it doesn't seem to work. Tia. Bump..
  17. Right. That was my bad. I did not want to spam the thread. That's all. Will never happen again. Thanks for reminding me Arcenciel.
  18. Sorry if the information I gave was a bit vague. Have you checked the post #11 from the link I posted on my first post? I need the opposite mod of it. But, the mode or checks would be on specific map. Not mapflag. ItemID,mapname (The item or equipment inside this map cannot be used.)
  19. Please, don't spam in my thread. >.>@peopleperson49, thanks for the reply. I only want to limit the items and equipments usage on some maps. Anybody?
  20. Thanks to all those who posted. Case solved.
  21. Hiya, man. Do you know the effect's # for Over Thrust / MOT? Thanks.
  22. Legato

    Alt+m

    Tried it. But, it didn't work. Keim's solution did. Thanks for replying.
  23. Legato

    Alt+m

    As the title says, the commands I put in there is not saved. Commands like on alt+1 = /sit alt+2 @storage. Anybody here have any idea what causing it? The client I'm using is 2011-11-02. Thanks.
  24. Thanks for the reply. I appreciate it, sir. The links you have provided is about the Setup.exe keeps popping up after closing and saving it or the client doesn't show up when you try to open it. EDIT : Fixed it.
×
×
  • Create New...