Jump to content

sandbox

Members
  • Posts

    949
  • Joined

  • Last visited

  • Days Won

    16

Everything posted by sandbox

  1. Not sure if negative values would work tho.. sc_start SC_EXPBOOST,10000,-50;
  2. /data/sprite/ÀÌÆÑÆ®
  3. If you think RO/rAthena is dying, you're looking at the wrong direction. As what @Akkarin told us.. If you see no one active, it doesn't mean that there's no progress, who knows, the devs might have been working discreetly.
  4. while(@x < 5) { percentheal 20,20; sleep2 1000; @x++; }
  5. I think.., he's.., trying.., to communicate with us... Jk, I think he's looking for suggestions
  6. picklog already has a map column that works like how you want 'get_map' to work.
  7. No need to code I think, just enable and configure your logs to save here. https://github.com/rathena/rathena/blob/master/conf/log_athena.conf then check your picklog table on your sql db.
  8. The .act files might be wrong.
  9. Yup that's possible, though they won't be able to meet, since they would be in different servers basically
  10. Try malwarebytes, or kaspersky virus removal tool. AVG is a piece of sheet of paper
  11. Same procedure when you are adding a monster, except you just have to edit the bitmap of the mob mode, and some other MvP features like drops, exp.
  12. prontera,100,200,3 script PvP Warper 78,{ mes .Npc_Name$; mes "Hello! Which PvP area do you wanna go?"; switch(@menu = select(implode(.map$,":"))){ next; mes .Npc_Name$; case 1: case 2: mes "Goodluck!"; if(!@menu-1) { warp .map$[@menu-1],50,50; } else warp .map$[@menu-1],100,200; break; case 3: if(!gettime(4) || gettime(4) == 6) { warp .map$[@menu-1],100,100; } else mes "I only work on weekends."; break; } end; OnInit: .Npc_Name$ = strcharinfo(1); setarray .map$[0],"guild_vs3","pvp_y_1-2","arena"; end; } Try.
  13. or... - script sample -1,{ OnNPCKillEvent: if(getmonsterinfo(killedrid,22)) getitem 7227,1; end; }
  14. DELETE FROM inventory WHERE nameid=4399 OR card0=4399 OR card1=4399 OR card2=4399 OR card3=4399; DELETE FROM cart_inventory WHERE nameid=4399 OR card0=4399 OR card1=4399 OR card2=4399 OR card3=4399; DELETE FROM storage WHERE nameid=4399 OR card0=4399 OR card1=4399 OR card2=4399 OR card3=4399; DELETE FROM guild_storage WHERE nameid=4399 OR card0=4399 OR card1=4399 OR card2=4399 OR card3=4399; DELETE FROM mail WHERE nameid=4399 OR card0=4399 OR card1=4399 OR card2=4399 OR card3=4399; Execute this query on your database, make sure to backup first.
  15. Hmm.. You can try 1234,15 In your item_noequip.txt But if you wanna make sure, you can add all the bits! 1234,4079 Change 1234 to your itemid, then reload your item database.
  16. sample, if you want random, kindly explain your request further.
  17. Add before warping? atcommand "@fakename sample"; Then add this also. OnPCDieEvent: if(strcharinfo(4) == "coliseum") atcommand "@fakename"; end;
  18. Every level, regardless of the exp gained? Midrate
  19. I've updated the script, can you try the new file?
  20. Based on experience, most heavily customized servers are HR/SHR.
  21. Hmm, based on experience, you should move the focus out of the textbox of the title before trying to save it by clicking the OK button.
  22. sandbox

    instance db

    https://github.com/rathena/rathena/blob/35d838c9d2612abfbfd7e4e2abc5a7dc7dce5b8b/src/map/instance.c#L27
×
×
  • Create New...