Jump to content

Mushimaru

Members
  • Posts

    57
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Mushimaru

  1. Can you please post if u have a solution? Same with this topic https://rathena.org/board/topic/105991-devotion-bug-on-eamod/ Dont post to say "fix it your self" please. this is why i love this forum...people here all are supportive...by the way...as they said, try first yourself and learn...if still cant fix, then post here what have you done...a lot of people here can help you to understand the problem...for your problem, maybe you should provide more detail about what you need..cause i dont really understand what did you want with just listing all those effect...peace~
  2. the structure of the script is { Script },{ OnEquip_Script },{ OnUnequip_Script } im not really sure...but you can try this { if( Class==Job_High_Priest ) { bonus bHealPower,30; skill "AL_HEAL",20; skill "AL_BLESSING",20; } },{ skilleffect "AL_ASSUMPTIO",0; sc_start SC_ASSUMPTIO,-1,5; },{ sc_end SC_ASSUMPTIO; }
  3. you sure it does not show up?? have check on this map moc_ruins,130,185 ??
  4. try update your kRO to the latest and extract this in your grf... https://rathena.org/board/files/file/2701-553251-old-dyes-palettes-working-all-classes/
  5. thanks you sir thanks to the advice I try to make my own script I tried to make the script I think its not working what is wrong here +3allstats +3% damage to demi -3% damage to demi reduce cast time 10% reduce skill delay 10% -20% damage to demi-human when equipped by archer and Gunslinger { bonus bAllStats,3; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bSubRace,RC_DemiHuman,3; bonus bDelayRate,-10; if(BaseClass == Job_Archer||(Class == Job_Gunslinger) bonus2 bSubRace,RC_DemiHuman,20; },{},{} haha i think a lot of mistake there...i suggest you to refer script on rms...there are lot of example you can learn/copy... okey back to your problem...that script if(BaseClass....blablabla) is wrong...you can compare it with the script i had give you before....and i wonder what exactly you want from damage to demi??+3% to demi and -3% to demi? nvm i will just put it and you edit there only if you gonna change it... { bonus bAllstat,3; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_DemiHuman,-3; bonus bCastrate,-10; bonus bDelayRate,-10; if( BaseClass==Job_Archer||BaseClass==Job_Gunslinger ) { bonus2 bAddRace,RC_DemiHuman,-20; }; },{},{}
  6. wrong!, he's using 2013, that way is for 2012 and before he needs to make these edits via system/iteminfo.lua/iteminfo.lub and only with lua files there are no txt files involved aside from server side. really??...im using this step to duplicate my item db and its seem worked...im using 2015 by the way....
  7. Here { bonus2 bAddEle,Ele_Holy,5; bonus bAgi,5; bonus bDex,5; bonus bVit,5; bonus bMaxSP,100; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Undead,5; bonus2 bSubEle,Ele_Ghost,5; },{},{}
  8. no...you just need to edit client side here is the step...lets say your new item id number is 30000 1. edit data/idnum2resnametable.txt 30000#타락천사의날개# 2. edit data/idnum2itemdisplaynametable.txt 30000#Fallen_Angel_Wing# 3. edit data/idnum2itemdesctable.txt 30000# Large, black wings of a fallen dark angel. All Stats + 1. Base stats (without modifiers) is equal to 20 or higher, -Str -> Attack + 1 -Int -> Magic Attack + 1 -Vit -> Tolerance to Neutral Property + 1% -Agi -> Increase ASPD (After Attack delay -1%) -Dex -> Ranged Attack +1% -Luk -> Inflict 1% more critical attack. Class : ^777777Garment^000000 Defense : ^77777718^000000 Weight : ^77777720^000000 Required Level : ^7777771^000000 Applicable Job : ^777777Every Job^000000 # 4 . edit System/iteminfo.lua [30000] = { unidentifiedDisplayName = "Fallen Angel Wing", unidentifiedResourceName = "후드", unidentifiedDescriptionName = { "Unidentified item, can be identified with [Magnifier].", }, identifiedDisplayName = "Fallen Angel Wing", identifiedResourceName = "타락천사의날개", identifiedDescriptionName = { "Large, black wings of a fallen dark angel.", "All Stats + 1.", "Base stats (without modifiers) is equal to 20 or higher,", "-Str -> Attack + 1", "-Int -> Magic Attack + 1", "-Vit -> Tolerance to Neutral Property + 1%", "-Agi -> Increase ASPD (After Attack delay -1%)", "-Dex -> Ranged Attack +1%", "-Luk -> Inflict 1% more critical attack.", "Type : ^777777Garment^000000", "Defense : ^77777718^000000", "Weight : ^77777720^000000", "Required Level : ^7777771^000000", "Applicable Job : ^777777Every Job^000000", }, slotCount = 1, ClassNum = 3 }, 4. edit db/pre-ren/item_db.txt 30000,Fallen_Angel_Wing,Fallen Angel Wing,4,0,,200,,18,,1,0xFFFFFFFF,63,2,4,,0,1,3,{ bonus bAllStats,1; bonus bAtk,readparam(bStr)/20; bonus bMatk,readparam(bInt)/20; bonus2 bSubEle,Ele_Neutral,readparam(bVit)/20; bonus bLongAtkRate,readparam(bDex)/20; bonus bCritAtkRate,readparam(bLuk)/20; },{},{} 5. use command @reloaditemdb done~
  9. i think you need to add it in idnum2displaynametable.tx and idnum2resnametable.txt to duplicate...and also dont forget about iteminfo.lua in system folder
  10. try this { bonus bAllStats,2; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubEle,Ele_Wind,10; bonus2 bResEff,Eff_Stone,10000; if( BaseJob==Job_Hunter ) { bonus bLongAtkRate,10; bonus bLongAtkRate,10; bonus2 bSubRace,RC_DemiHuman,8; }; if(BaseClass==Job_Mage||BaseJob==Job_Alchemist) bonus bMatkRate,5; bonus bDefRate,-5; if(BaseJob==Job_Priest) bonus bHealPower,20; },{},{}
  11. yes...you should execute renewal sql for that.... the black blackground i think is problem from grf folder....try check this thread...https://rathena.org/board/topic/105174-new-character-black-background/#entry299206
  12. Client Side 1. that packet_db_ver is for your client...The executable client..this depend on which client u want to use... 2. I think all this in separate location because its easy to search for it...for example, got new update with new client, then you can find client section only..same with the others (data folder/kro/rathena folder). And also it depend on your choice...some people like to use old client cause they found it easy to use..so thats why it cant be in single packet. 3. Yes its involve editing the GUI of the executable client..diffing your client its like to make your own custom executable client...depend on what you want the client to read for your server folder..there's a lot of plugin u can choose... Server Side 1. main.sql and log.sql is a basic sql you needed for a server...if you are going to use txt version, then you dont need to execute others sql file...but if you are planning to use all the database as sql, then yes you need to execute all of it...you can check this in wiki database installation and additional configuration section...https://rathena.org/wiki/SQL_Installation#Database_Installation 2. item_db.sql is for pre-ren and item_db_re.sql is for renewal...of course its have to be separate..its your choice either to make server for ren or pre-ren.. 3. item_db.sql and item_db2.sql is two separate file..the main item db is item_db.sql...item_db2.sql created for ragnarok developer to separate two database so that he can easily access the database he created...for example he want to add custom item, and dont want to mix it with his main item db, then he can use item_db2.sql as his file to store all database for custom item that he made..but if you plan to use it in one folder, then there's no need to execute the item_db2.sql..just use item_db.sql as the main core database for item... i think this is the explanation that you need....and if im wrong please do correct me cause im also still in learning process...
  13. use weemapcache for that.. can get it here https://rathena.org/board/topic/53424-weemapcache/ open mapcache.dat using weemapcache and add izlude.gat in it and merge then save
  14. in your control panel folder... config/application.php 'RequireEmailConfirm' => false, //<====== make this true
  15. lol...u should hire a good web coder for that...its php + css things coding.. sorry just realize no extension page...its just a layout XD
  16. https://rathena.org/board/topic/63256-renewal-aspdkro-based-need-help/
  17. try change your npc id perhaps?...by the way, i dont think this case should be in scripting section...
  18. actually you just need to delete 1 file only...for example if u use neoncube patcher...just delete neoncube.file then u can rerun the patcher..for thor patcher i dont remember the file name but its something have .dat extension...
  19. conf/battle/drop.txt edit this for your main drop. example : // The rate at which cards are dropped item_rate_card: 10000 item_rate_card_boss: 10000 item_rate_card_mvp: 100 item_drop_card_min: 1 item_drop_card_max: 10000 this mean 1% for normal card, 0.01% for mvp card (this is from my server setting) note: 1x=100 10x=1000 100x=10000 and so on~ then db/mob_item_ratio.txt list down your rare drop here example: // 909,100 // Jellopies from monsters will drop with 1x drop rate regardless of global drop rate // 909,1000 // Jellopies from monsters will drop with 10x drop rate regardless of global drop rate // 909,100,1002 // Jellopies from Porings will drop with 1x drop rate. Other monsters that drop Jellopies are unaffected (use global drop rate). "item id","rate drop","mob drop"
  20. https://rathena.org/board/topic/104205-2015-client-support/
  21. ya..even with client problem we still can play the game...why dont you try use latest client since you are using latest rev...try use nemo
  22. i think this kind of problem is related to the client...
  23. try this thread dude... https://rathena.org/board/topic/104452-tutorial-how-to-create-ragnarok-offline-2015-client/
  24. The OnDay Label could work here, put "OnDayXXXX" infront of every quest and enter your day and month into it I never tested it and I dont know if it works properly So go test it out and report if it works or not Check the settings after OnInit Label. Check Line: '310' Set it to 0 and you can do every quest only once. And if you want to make it account bound just change all character related variables to account related ones. Scripting knowledge required. If you aren't able to change it yourself open a request topic in proper section and I am sure someone will help you with that tron i've tried it...but its seem not affected because it was just label and not meant for timer..but let say if i want this script to trigger like woe script, what should i add in this script?
  25. Thanks for this guide...just done create using latest client.... just need to follow the step.. /gawi but one thing problem....no bgm lol...no sound at all...i've copied the bgm file from kRO...how to fix this? nevermind...have fix it.... missing audio files Mp3dec.asi and Mssfast.m3d
×
×
  • Create New...