-
Posts
949 -
Joined
-
Last visited
-
Days Won
16
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by sandbox
-
Not sure if negative values would work tho.. sc_start SC_EXPBOOST,10000,-50;
-
/data/sprite/ÀÌÆÑÆ®
-
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.
-
while(@x < 5) { percentheal 20,20; sleep2 1000; @x++; }
-
I think.., he's.., trying.., to communicate with us... Jk, I think he's looking for suggestions
-
You're welcome!
-
i got problem my item scription on item.db
sandbox replied to 8786511's question in Database Support
bonus bFlee2,6+(getrefine()*4); -
picklog already has a map column that works like how you want 'get_map' to work.
-
Sad truth of life
-
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.
-
The .act files might be wrong.
-
Yup that's possible, though they won't be able to meet, since they would be in different servers basically
-
Try malwarebytes, or kaspersky virus removal tool. AVG is a piece of sheet of paper
-
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.
-
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([email protected]) { 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.
-
or... - script sample -1,{ OnNPCKillEvent: if(getmonsterinfo(killedrid,22)) getitem 7227,1; end; }
-
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.
-
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.
-
sample, if you want random, kindly explain your request further.
-
Add before warping? atcommand "@fakename sample"; Then add this also. OnPCDieEvent: if(strcharinfo(4) == "coliseum") atcommand "@fakename"; end;
-
Every level, regardless of the exp gained? Midrate
-
I've updated the script, can you try the new file?
-
Based on experience, most heavily customized servers are HR/SHR.
-
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.
-
https://github.com/rathena/rathena/blob/35d838c9d2612abfbfd7e4e2abc5a7dc7dce5b8b/src/map/instance.c#L27