Jump to content

Poring King

Members
  • Posts

    1017
  • Joined

  • Last visited

  • Days Won

    22

Everything posted by Poring King

  1. Go to your server files serverfiles/conf/motd.txt
  2. Hello im trying to create a event that you are not allowed to kill monster if you are not equip with this item .
  3. Yes because you are just using OnPCLoginEvent: I got Antibot that works if you kill monster it will ask you and if you log in to server . You can see it to my collection
  4. It should be work since you just put a OnMinute . Give a test remove the OnMinute and look if it working properly
  5. Yes why ? Its start every 1hours . If you put 01 it start every 01 in hour Check this to get the idea
  6. Add OnMinute here if(getgmlevel() >=40) end; OnMinute00: sc_start SC_FREEZE,1000000,100000; atcommand "@hide";
  7. RSS feed is already build in FluxCP
  8. I already provide you what you need . I even put 1 warp command to train . So you only need to do is to copy and replace it to your own map coordinates This is the new one that you need - script example -1,{ OnInit: bindatcmd "BTS",strnpcinfo(3) + "::OnBTS"; bindatcmd "Train",strnpcinfo(3) + "::OnTrain"; bindatcmd "Quest",strnpcinfo(3) + "::OnQuest"; end; //------------------------------------------------------- OnBTS: warp "prontera",155,180; end; //------------------------------------------------------- OnTrain: warp "prontera",155,180; end; //------------------------------------------------------- OnQuest: warp "prontera",155,180; end; }
  9. If you are using below 2017 client you need to use lang type 0 2018 or more use langtype 1
  10. Solved /* CREATE TABLE IF NOT EXISTS `fabre_punch_rank` ( `cid` INT(11) UNSIGNED NOT NULL DEFAULT '0', `name` NVARCHAR(30) NOT NULL DEFAULT '', `point` INT(11) NOT NULL DEFAULT '0', `rank` TINYINT(3) UNOT NULL DEFAULT '0', PRIMARY KEY (`cid`) ) ENGINE=MyISAM; */
  11. Hello my other sql is working fine but this code is not working i just made this . Any idea ? /* CREATE TABLE IF NOT EXISTS `fabre_punch_rank` ( `cid` INT(11) UNSIGNED NOT NULL DEFAULT '0', `name` NVARCHAR(30) NOT NULL DEFAULT '', `point` INT(11) SIGNED NOT NULL DEFAULT '0', `rank` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0', PRIMARY KEY (`cid`) ) ENGINE=MyISAM; */
  12. Try this just made it for you not tested but it should be work. - script example -1,{ OnInit: bindatcmd "BTS",strnpcinfo(3) + "::OnBTS"; bindatcmd "Train",strnpcinfo(3) + "::OnTrain"; bindatcmd "Quest",strnpcinfo(3) + "::OnQuest"; end; //------------------------------------------------------- OnBTS: mes "This is me if you add mes on script"; dispbottom "This is me if you successfully initiate bind command"; end; //------------------------------------------------------- OnTrain: mes "This is me if you add mes on script"; dispbottom "This is me if you successfully initiate bind command"; warp "prontera",155,180; end; //------------------------------------------------------- OnQuest: mes "Add your quest here"; mes "Test"; next; switch(Select("Gentleman's Pipe Quest","Exit)){ case 1: mes "^00B200I need the following item:^000000"; mes "1500 Piece of Bamboo"; mes "300 Sharp Leaf"; mes "1000 Thin Trunk"; mes "50 Matchstick"; mes "5 TCG"; next; mes "[Mogan]"; mes "Do you desire ^FFCC00Gentleman's Pipe^000000?"; next; menu "Yes",-,"No",L_OUT; if(countitem(7150) < 1500 || countitem(7100) < 300 || countitem(7186) < 1000 || countitem(7035) < 50 || countitem(7227) < 5 ) goto L_NOTENOUGH; delitem 7150,1500; delitem 7100,300; delitem 7186,1000; delitem 7035,50; delitem 7227,5; getitem 5377,1; mes "Here is your ^FFCC00Gentleman's Pipe^000000, may it serve you well."; close; } //-------------------------NPC DIALOG ------------------------------ L_NOTENOUGH: mes "^FF0000Please Check your item!!^000000"; close; L_OUT: mes "Dont go back again here !!"; close; }
  13. Then you got your updated files . Open your data grf or rdata grf. copy what you need and add it to your own.grf
  14. To get the last data files . Just simply patch your KRO
  15. Pre-renewal 20151104 but now we are adopting 2018 clients and its works fine since this is the new stable client that rAthena Support
  16. That is what you are asking for this post so we answer . It should be solve already
  17. Yes you are right! Ok
  18. Skill_db and other got merge to skill_db.yml
  19. Find the item and find this on there description <nav> </nav> its work like HTML
  20. Yes i forgot to add prontera,0,03 script TouchMe -1,10,10{ The 10,10 from the -1,10,10{ Make the NPC Touchable around by 10x10 area from the NPC
×
×
  • Create New...