Jump to content

Mystery

Members
  • Posts

    2192
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by Mystery

  1. It's trying to find those items that aren't even in the database. I suggest you remove where those items are being searched for. (I.E. Shops)
  2. Oh, hmph. Paradox is doing something then.
  3. Would be nice if you let us know the name of the NPC. But from the looks of it, I believe its the free warper to Vacuum. //Mid Camp Warper (gogoash), Translated from the Official [slim] prontera,161,192,5 script Ash Vacuum Warper 707,{ mes "[Warp Soldier]"; mes "For a limited period."; mes "I can send you to Ash-Vacuum without any fee."; next; mes "[Warp Soldier]"; mes "Do you want to go to Ash-Vacuum right now?"; next; switch(select("Yes, please","Not yet")) { case 1: mes "[Warp Soldier]"; mes "Ok. I hope you"; mes "enjoy your trip."; close2; set ep13_ryu,100; warp "mid_camp",210,291; break; case 2: mes "[Warp Soldier]"; mes "No problem. I understand."; mes "Tell me when you change your mind."; mes "See you."; close; break; } end; } https://rathena.svn....quests_13_1.txt
  4. Seems to be eAthena is down? http://www.eathena.ws/board/index.php?act=idx Payment fees not being paid?
  5. Can you share the packets for that cash shop icon? D:! I wanna have thattt!!
  6. Newer clients onwards will always have that body relocation problem. Fix it VIA source side, not client side. There are a lot of topics regarding this fix already on rAthena. Also, for the cart fix, are you using the one that actually works properly? http://mysterious-pr...art Patch.patch The cart fix from that link you have doesn't fix all the problems that has been listed in the TOPIC where you've got the link from.
  7. Taos are cards.. thus being in the DATABASE.. Not a source modification. You should know that REALLY BAD if you wanna make a server. Also, for GTB, found here: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/conf/battle/items.conf // Required level of bNoMagicDamage before Status Changes are blocked (Golden Thief Bug card). // For example, if left at 50. An item can give bNoMagicDamage,40; // which reduces magic damage by 40%, but does not blocks status changes. gtb_sc_immunity: 50
  8. Im not sure.. but try changing job names in the msgstringtable. If not, then your client has it hard coded.
  9. Can you link to what he did please?
  10. I can see unique NPCs created and designed for servers easily vanished now. Since graphics were easily stolen (and still can be), next to nothing being stolen were Uniquely designed NPCs. Since graphics no longer were able to make servers stand out, NPCs did. Now, with this tool, nothing is longer unique. Since this tool is easily able to get a hold of a NPC's structure, what's the point on creating new and unique NPCs to help make a server stand out? If this program can easily take that structure of the NPC, save it, and boom. The person now has that NPC they've always wanted from a specific server.. =/ On a side note, what exact client are you using?.. Since you have a Cash shop button.
  11. Depending on your client version. New clients have their job names hard coded into the client themselves.
  12. If Guild Extension is max level is 5, do 15+1*1. If it's max level is 10.. then try 10+1*1
  13. Is this a script that I install just like a normal script or do I add this in some kind of document? No, not a NPC script, just add your map to the desired mapflag. Example:
  14. You can also block warp and go by : https://rathena.svn....flag/nowarp.txt and @load by: https://rathena.svn....ag/noreturn.txt
  15. You could try this: - script GMLogin -1,{ OnPCLoginEvent: if(getgmlevel()==50) { atcommand "@speed 0"; atcommand "@hide"; atcommand "@kamib Endless Ragnarok GM Police/Event, "+strcharinfo(0)+" Has Login"; atcommand "@monsterignore"; dispbottom "Welcome "+strcharinfo(0)+" ! Please make sure to check players!"; dispbottom "Current Server Time : " + gettimestr("%A %B %d %Y - %I:%M %p",40); } OnPCLogoutEvent: if(getgmlevel() == 50) { atcommand "@kamib Endless Ragnarok GM, "+strcharinfo(0)+" Has Logout"; } } - script GMLogin2 -1,{ OnPCLoginEvent: if(getgmlevel() == 90) { atcommand "@speed 0"; atcommand "@hide"; atcommand "@kamib Endless Ragnarok Head GM, "+strcharinfo(0)+" Has Login"; atcommand "@monsterignore"; dispbottom "Welcome "+strcharinfo(0)+" ! Please make sure to check players!"; dispbottom "Current Server Time : " + gettimestr("%A %B %d %Y - %I:%M %p",40); } OnPCLogoutEvent: if(getgmlevel()==90) { atcommand "@kamib Endless Ragnarok GM, "+strcharinfo(0)+" Has Logout"; } } - script GMLogin3 -1,{ OnPCLoginEvent: if(getgmlevel() ==99 ) { atcommand "@speed 0"; atcommand "@hide"; atcommand "@kamib Endless Ragnarok GM, "+strcharinfo(0)+" Has Login"; atcommand "@monsterignore"; dispbottom "Welcome "+strcharinfo(0)+" ! Please make sure to check players!"; dispbottom "Current Server Time : " + gettimestr("%A %B %d %Y - %I:%M %p",40); } OnPCLogoutEvent: if(getgmlevel()==99) { atcommand "@kamib Endless Ragnarok GM, "+strcharinfo(0)+" Has Logout"; } } Or this: - script GMLogin -1,{ OnPCLoginEvent: if(getgmlevel()==50) { atcommand "@speed 0"; atcommand "@hide"; atcommand "@kamib Endless Ragnarok GM Police/Event, "+strcharinfo(0)+" Has Login"; atcommand "@monsterignore"; dispbottom "Welcome "+strcharinfo(0)+" ! Please make sure to check players!"; dispbottom "Current Server Time : " + gettimestr("%A %B %d %Y - %I:%M %p",40); } if(getgmlevel() == 90) { atcommand "@speed 0"; atcommand "@hide"; atcommand "@kamib Endless Ragnarok Head GM, "+strcharinfo(0)+" Has Login"; atcommand "@monsterignore"; dispbottom "Welcome "+strcharinfo(0)+" ! Please make sure to check players!"; dispbottom "Current Server Time : " + gettimestr("%A %B %d %Y - %I:%M %p",40); } if(getgmlevel() ==99 ) { atcommand "@speed 0"; atcommand "@hide"; atcommand "@kamib Endless Ragnarok GM, "+strcharinfo(0)+" Has Login"; atcommand "@monsterignore"; dispbottom "Welcome "+strcharinfo(0)+" ! Please make sure to check players!"; dispbottom "Current Server Time : " + gettimestr("%A %B %d %Y - %I:%M %p",40); } } - script GMLogout -1,{ OnPCLogoutEvent: if(getgmlevel() >= 50) { atcommand "@kamib Endless Ragnarok GM, "+strcharinfo(0)+" Has Logout"; } } Or remove the GmLogout npc and just add OnPCLogoutEvent in one NPC. Or, use plankt's.
  16. Pet level im not sure of, but I have a homun level 999 script =/ http://mysterious-project.googlecode.com/svn/trunk/db/exp_homun.txt I think in the Homun and pet conf, rathena should set up a max level option.
  17. Backseat moderating is discourages. Stop trying so hard. Im just reminding them.. since no moderators are actually reminding them.. People remind people all the time.
  18. Wish, I don't wanna be a burden.. but you literally can get rips of IPB boards.. =/. No one will want to pay for a board if they can get it for free.
  19. Guys, keep it IN ENGLISH PLEASE. You're posting in an English section afterall. And, at topic owner, very nice character designs!
  20. Looks like Aegis to me o_O
  21. Is this only in client 2011-11-22aRagexeRe? Because I have a 2012 one and I dont have this button.
×
×
  • Create New...