Jump to content

sandbox

Members
  • Posts

    949
  • Joined

  • Last visited

  • Days Won

    16

Everything posted by sandbox

  1. skill_db.txt Find 405,7,6,1,0,0x1,0,1,1,no,0,0,3,magic,0,0x20, PF_SPIDERWEB,Fiber Lock Replace with 405,7,6,2,0,0x1,0,1,1,no,0,0,3,magic,0,0x20, PF_SPIDERWEB,Fiber Lock
  2. prontera,100,200,4 script delete 46,{ mes "Input char to delete"; input .@char$; if(getcharid(3,.@char$)) atcommand "@kick "+.@char$; query_sql("DELETE FROM `char` WHERE `char_id`='"+getcharid(3,.@char$)+"'"); close; } There has been a thread like this before, which we discussed that you should keep in mind that other tables contain data from player too, inventory, party, guild, etc.
  3. - script Sample -1,{ OnInit: set .amount, 40; // amount of item to shower set .item_id, 7227; // item id to shower set .item_id2, 1234; // next item id to shower set .map$, "prontera"; // map to shower bindatcmd "itemshower",strnpcinfo(3)+"::OnShower",40,40; end; OnShower: while ( .count < .amount ) { do { .@x = rand(1,500); .@y = rand(1,500); } while (!checkcell(.map$,.@x,.@y,cell_chkpass)); .@var = rand(2); makeitem .@var?.item_id:.item_id2,1,.map$,.@x,.@y; set .count, .count + 1; } set .count, 0; end; } Try that
  4. Your client/packet settings must be wrong..
  5. Nice! Could be improved the borders to increase 3D effect 7/10! Though I think this should be in sprite section..
  6. Is that really hallucination? He doesn't have the status icon on.. Try turning off effects, and see if it happens. If it does, then it's hallucination.
  7. Try - script Sample -1,{ OnInit: set .amount, 40; // amount of item to shower set .item_id, 7227; // item id to shower set .item_id2, 1234; // next item id to shower set .map$, "prontera"; // map to shower bindatcmd "itemshower",strnpcinfo(3)+"::OnShower"; end; OnShower: while ( .count < .amount ) { do { .@x = rand(1,500); .@y = rand(1,500); } while (!checkcell(.map$,.@x,.@y,cell_chkpass)); .@var = rand(2); makeitem .@var?.item_id:.item_id2,1,.map$,.@x,.@y; set .count, .count + 1; } set .count, 0; end; }
  8. If you want to put it on items, there's an item script for that bonus2 bSkillAtk,sk,n; Increases damage of skill sk by n% But if you want it permanently, you can increase their values in src/map/battle.c, for example.. Find case WS_CARTTERMINATION: i = 10 * (16 - skill_lv); if (i < 1) i = 1; //Preserve damage ratio when max cart weight is changed. if(sd && sd->cart_weight) skillratio += sd->cart_weight/i * 80000/battle_config.max_cart_weight - 100; else if (!sd) skillratio += 80000 / i - 100; Increase 'skillratio' value to how much you would want to increase it.
  9. If you want to put it on items, there's an item script for that bonus2 bSkillAtk,sk,n; Increases damage of skill sk by n% But if you want it permanently, you can increase their values in src/map/battle.c, for example.. Find case WS_CARTTERMINATION: i = 10 * (16 - skill_lv); if (i < 1) i = 1; //Preserve damage ratio when max cart weight is changed. if(sd && sd->cart_weight) skillratio += sd->cart_weight/i * 80000/battle_config.max_cart_weight - 100; else if (!sd) skillratio += 80000 / i - 100; Increase 'skillratio' value to how much you would want to increase it.
  10. I disagree. Played 3 weeks of Mabinogi and quitted. The combat is nice and everything, there is no tank concept, literally has to calculate to dodge and not take damage, it takes skill to actually play, but.. Quest? Lore? Aesthetic? PvP? RO (Pre-Renewal) pretty much wins everything. The game is pretty much Pay 2 Win. OP Paid Pets, OP Paid Equips, OP Refines. You can freely rebirth and get real strong simply by paying too (Without level req/Age req). The quest is repetitively boring, Hunt 10 Giant Hornets, next, Hunt 10 Werewolves, next, Hunt 10 xxxx. All against recolored mobs. Wtf? The mobs aren't even that interesting tbh. Most nexon games = pay2win
  11. I'm assuming your server is being hosted, if that's the case your MySQL = PhpMyAdmin.
  12. That's impossible, you can't run a server without a database >_>
  13. Adding an admin account would be no use if you didn't change the group id column in `login` table in your SQL database.
  14. use set for all variable declarations..
  15. I beg to differ, but yeah RO>Dota2>All f2p
  16. Can you remove the $ postfix on .@BanTime? and try again.. Weird, there were no syntax errors for me.
  17. Kindly clarify the refine rate bonus of your wings. //Epic Inu Ears bonus bInt,15+(getrefine()/2); bonus bAgi,15; //Epic Inu Wings bonus bVit,15; //Epic Inu Taurus bonus bNoGemStone,0; bonus bAspdRate,40; //item_combo.txt 30062:30063:30064,{ bonus bVit,10; bonus bLuk,10; bonus bInt,20; } 30065:30066:30067,{ bonus bStr,15; bonus bVit,15; bonus bLuk,15; } 30077:30078:30079,{ bonus bDex,10; bonus bVit,10; bonus bLuk,15; } //Epic Neko Ears bonus bStr,15+(getrefine()/2); bonus bAgi,15; //Epic Neko Wings bonus bVit,15; //Epic Neko Taurus bonus bNoGemStone,0; bonus bAspdRate,40; //Sekhmet Helm bonus bDex,15+(getrefine()/2); bonus bAgi,15; bonus bFlee,30; //Sekhmet Wings bonus bVit,15; //Sekhmet Taurus bonus bNoGemStone,0; bonus bAspdRate,40;
  18. src/config/renewal.h
  19. Kindly test, though i'm not sure if IP ban would work properly. prontera,100,200,4 script Police 46,{ mes .Npc_Name$; mes "How may I help you, "+strcharinfo(0)+"?"; mes "Do you want to report someone?"; next; close2; mes .Npc_Name$; mes "Input the player you want to mute"; input .@player$; mes "Input the reason"; input .@reason$; if(!getcharid(3,.@mplayer$)) { mes "The player is not online"; close; } switch(select("Mute:IP Ban")) { case 1: atcommand "@mute "+.Mute_Time+" "+.@player$; message .@player$,"You have been muted by "+strcharinfo(0)+" [Reason: "+.@reason$+"]"; close; break; case 2: .@BanTime$ = atoi(gettimestr("%H",2))+.IPBan_Time; query_sql("INSERT INTO `ipbanlist` VALUES ('"+getcharip(.@mplayer$)+"','"+gettimestr("%Y-%m/%d %H:%M:%S",21)+"','"+gettimestr("%Y-%m/%d "+.@BanTime$+":%M:%S",21)+"','"+.@reason$+"')"); message .@player$,"You have been IP Banned by "+strcharinfo(0)+" [Reason: "+.@reason$+"]"; close2; sleep2 5000; atcommand "@kick "+.@player$; end; break; } end; OnInit: .Npc_Name$ = "[^0000FF "+strnpcinfo(1)+" ^000000]"; .Mute_Time = 5; //Mute for 5 minutes .IPBan_Time = 10; //IP Ban for 10 hours end; }
  20. Do you want it to still fail? And with the percentage you're telling me, it exceeds 100% when added, do you mean that do you want them to get multiple oresin one take? Please, if you are requesting for something, kindly elaborate it..
  21. Hmm it seems that the item_combo unequips the item first, so the combo bonuses will get recognized. Not sure if this is a bug.
  22. Probably you haven't saved it properly if you were editing it via FTP/SSH.. And you might had disk space issues if that's the case.
  23. TXT version has been dropped a long time ago, you need to setup your own.. Or you can download a super old version in athena via tortoiseSVN
×
×
  • Create New...