Jump to content

Patskie

Members
  • Posts

    1702
  • Joined

  • Last visited

  • Days Won

    19

Everything posted by Patskie

  1. Seems like inter_athena.conf is missing on conf folder. You must update or re-download the latest svn
  2. As long as no warnings, debug, error and some sql related then there should be no problem. In your case it has [info] tag which means server running smoothly
  3. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/re/skill_nocast_db.txt // Forbidden Skills Database // // Structure of Database: // SkillID,Flag // // Legend for 'Flag' field (bitmask): // 1 = Cannot be used in normal maps // 2 = Cannot be used in PvP maps (use this instead of 1 for PK-mode servers) // 4 = Cannot be used in GvG maps // 8 = Cannot be used in Battleground maps // 16 = Cannot be cloned (clones will not copy this skill) // Restricted zones - they're configured by 'restricted <number>' mapflag // 32 = Cannot be used in zone 1 maps // 64 = Cannot be used in zone 2 maps // 128 = Cannot be used in zone 3 maps // 256 = Cannot be used in zone 4 maps // 512 = Cannot be used in zone 5 maps // 1024 = Cannot be used in zone 6 maps // 2048 = Cannot be used in zone 7 maps // // Example: // 8,6 = Endure cannot be used in PvP and GvG maps (2+4)
  4. http://rathena.org/wiki/Edit_Max_Level make sure you recompile your server after this
  5. Stage Game by Emistry http://pastebin.com/raw.php?i=A97wVN2U
  6. bonus3 bAutoSpell,"CG_ARROWVULCAN",5,0.5; bonus2 bSkillAtk,394,10;
  7. Just put the code and test it. According to this if Sex returns 0 then the character is female otherwise a male (1)
  8. if (!Sex) { changebase <job_id>; } 17929,Gypsy_Suit,Gypsy Suit,5,89000,,500,,4,,1,0xFFFFFFFE,7,2,16,,10,1,0,{ if(!Sex) { changebase 4021; } },{},{ changebase Class; } 17928,Dancer_Suit,Dancer Suit,5,89000,,500,,4,,1,0xFFFFFFFE,7,2,16,,10,1,0,{ if(!Sex) { changebase 20; } },{},{ changebase Class; } 17962,Baby_Dancer_Suit,Baby Dancer Suit,5,89000,,500,,4,,1,0xFFFFFFFE,7,2,16,,10,1,0,{ if(!Sex) { changebase 4043; } },{},{ changebase Class; } if (Sex) { changebase <job_id>; } 17926,Bard_Suit,Bard Suit,5,89000,,500,,4,,1,0xFFFFFFFE,7,2,16,,10,1,0,{ if(Sex) { changebase 19; } },{},{ changebase Class; } 17927,Clown_Suit,Clown Suit,5,89000,,500,,4,,1,0xFFFFFFFE,7,2,16,,10,1,0,{ if(Sex) { changebase 4020; } },{},{ changebase Class; } 17961,Baby_Bard_Suit,Baby Bard Suit,5,89000,,500,,4,,1,0xFFFFFFFE,7,2,16,,10,1,0,{ if(Sex) { changebase 4042; } },{},{ changebase Class; }
  9. There are many tutorials on the internet. http://lmgtfy.com/?q=how%20to%20edit%20mysql%20database
  10. This is a breeder script //===== eAthena Script ======================================= //= Custom Free Breeder aka Universal Renter (not reccomended) //===== By: ================================================== //= eAthena Team //===== Current Version: ===================================== //= 1.5 //===== Compatible With: ===================================== //= eAthena 1.0 Final + //===== Description: ========================================= //= A Free PecoPeco and Falcon Breeder //===== Additional Comments: ================================= //= 1.1 FIXED checkriding/cart/falcon funcs [Lupus] //= 1.2 Added Rebirth/Advanced Class support [Mass Zero] //= 1.3 Simplified the checks of job [Silentdragon] //= 1.3a Fixed a Typo Error. [Samuray22] // -Thanks to ~AnnieRuru~. //= 1.4 Optimized Script. No need for 50 million Labels. [Spre] //= 1.5 Adapted to 3CeAM and 3rd jobs. [pakpil] //============================================================
  11. Link : http://pastebin.com/raw.php?i=6Q8ZmsXR Didn't delete zeny weapon and cards instead i added a menu Castle Drops which contains the items you specify in this topic
  12. function script Lang { if(getarg(0) == 0){ // English by default mes "Hello"; } if(getarg(0) == 8){ //Portuguese Language mes "Olá"; } close; } Like this?
  13. announce "This will broadcast on the entire server",0; announce "This will broadcast on yourself",3; or you can try : dispbottom "This is a message"; Reference : http://rathena.org/wiki/Announce
  14. 3841
  15. I answered a topic regarding this last time. This might help : http://rathena.org/board/topic/82874-pvp-warper-w-dota-sound-and-ladder-global/#entry200210
  16. 40*10 = 400 = 100% case WZ_STORMGUST: skillratio += 40*skill_lv; break; Replace it with : ( 32 * 10 ) = 320 = 80% case WZ_STORMGUST: skillratio += 32*skill_lv; break; 20% of 400 is 80. 80*4 = 80% = 320
  17. 3836
  18. Patskie

    guys help

    Reference : https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/conf/battle/skill.conf // Allow use of SG skills without proper day (Sun/Moon/Star) ? allow_skill_without_day: no Should be : // Allow use of SG skills without proper day (Sun/Moon/Star) ? allow_skill_without_day: yes
  19. 1. VIP Script : http://pastebin.com/raw.php?i=WFdDkhff 2. VIP Warper : http://pastebin.com/raw.php?i=Mrtt6W54 For gold room, You can use existing scripts out there and provide a check if they are vip or not so that you can restrict them if they can use your gold room or not. A check code must be like the following : query_sql "SELECT `account_id` FROM `vip` WHERE `account_id` = '"+getcharid(3)+"'", .@VIP; if ( .@VIP ) { // If VIP then allow to use your VIP service } else { // If not VIP then do terminate the conversation } Well if someone could provide you a better approach regarding this then i appreciate it.
  20. put it under permission group
  21. Patskie

    Max Zeny

    Note you can only have up to 2,000,000,000 i guess. greater than that will result to compile error.
  22. Yes all patch data are stored in a ".dat file" so if u remove it then the patcher will repatch agian
  23. it's 11 am and 11 pm. 10:00 and 22:00 ( 10 am and 10 pm ) OnClock1000: OnClock2200: Refer : http://rathena.org/wiki/Timers_(Scripting)
×
×
  • Create New...