Jump to content

Cydh

Developer
  • Posts

    2285
  • Joined

  • Last visited

  • Days Won

    77

Everything posted by Cydh

  1. Please who use this patch, give us feedback. Does it work fine? Any issue? What language you translate? just any info related this feature
  2. Can you reduce player requirement for BG? maybe 2 vs 2.
  3. ROA_PARAM is currently (officially) unused. But of course u can use it. Simply say, it's just 'another' value. If u read current item_randomopt_db.txt, the bonuses there aren't using bonus with 'another values'. Example RDMOPT_ATTR_TOLERACE_GROUND,{ bonus2 bSubEle,Ele_Earth,getrandomoptinfo(ROA_VALUE); } You also can change the 'Ele_Earth' as ROA_VALUE then the ROA_PARAM is the tolerance value, such RDMOPT_ATTR_TOLERACE_GROUND,{ bonus2 bSubEle,getrandomoptinfo(ROA_VALUE),getrandomoptinfo(ROA_PARAM); } But, u have to do setrandomoption correctly. And need to edit the lua on client.
  4. thank you. Do all registered users have GM commands?
  5. As I mentioned in the first post, this only for the old rAthenas. or if you have old custom items.
  6. possible, but in RE the atk field is defined as atk:matk, u maybe need to recheck item with that format and move the matk to bonus bMatk,n; If u don't, ur weapon never has matk some bonuses maybe doesn't work, such for fixed cast (since PRE has no fixed cast time) don't overwrite PRE items with RE items, even some same items may will be OP for PRE if the RE items use getgroupitem in the script, u need add the packages from db/re/item_packages.txt ...
  7. update: soon release: too fast hundred years
  8. @esu1214, if u know how to set premium (account, cafe) on Aegis, please tell me how. I need to test many premium services on Aegis
  9. Lokasi: Jakarta Convention Center, Senayan Jakarta Tanggal: 2 - 6 November 2016 (kalo ga salah baca) Siapa tau ada pemain private server yang mau mendadak jadi player idRO untuk sementara, cuma buat menangin hadiahnya Fan Art Contest Lomba Fan Art RAGNAROK FESTIVAL 2016 terbuka untuk umum. Perlombaan ini tidak dipunggut biaya apapun. Fan Art yang dibuat menceritakan tentang salah satu atau gabungan dari character, tokoh, monster, Pet, Item, NPC atau apapun yang berkaitan dengan RAGNAROK ONLINE. Boleh mengirimkan lebih dari satu Fan Art. Fan Art yang dibuat harus merupakan ide orisinil (karya asli), bukan mencontoh dari hasil Fan Art lain dan belum pernah dipublikasikan sebelumnya. Fan Art tidak mengandung SARA dan PORNOGRAFI. Teknik gambar yang digunakan bebas (boleh manual dan boleh menggunakan computer). Besar/Ukuran halaman minimal A4 (21x29,7 cm). Bagi yang menggunakan Computer harus memakai resolusi 300 dpi High Quality, warna: RGB/CMYK. Bagi yang menggunakan gambar tangan (Manual) dapat mengirimkan hasil karya dalam bentuk file hasil scan. Didalam Fan Art tersebut WAJIB disertakan logo dari RAGNAROK ONLINE. Cosplay Competition Perlombaan ini terbuka untuk umum. Tema kostum yang dibuat harus diambil dari RAGNAROK ONLINE, misalnya Karakter Job/Profesi, Monster, Pet, Item, NPC atau apapun yang berkaitan dengan RAGNAROK ONLINE. Ayoo kembangkan imajinasimu. ^^ Bahan kostum Cosplay bebas, tergantung dari masing-masing peserta. Hasil rancangan akan diperagakan pada RAGNAROK FESTIVAL 2016 yang akan diadakan di Jakarta Convention Center, Senayan - Jakarta. Lomba Foto RO Family Foto diharuskan berupa foto Group/berkelompok bersama dengan keluarga (untuk RO mania yang telah berkeluarga), komunitas RO, Guild, Teman, ataupun sahabat kalian ketika selama ini bermain Ragnarok Online. 1 Group minimal 3 Orang. Lytogamers diharuskan untuk mengirimkan karya Foto semenarik mungkin bertemakan RO FAMILY (Kebersamaanmu di Ragnarok Online). Foto harus berupa foto real life. Foto harus dilengkapi dengan properti, nuansa, ornamen atau segala sesuatu yang berhubungan dengan game Ragnarok Online dan tanpa editing. Foto tidak mengandung SARA dan PORNOGRAFI. Tipe file Foto: .JPG, .BMP, .PNG dengan resolusi minimal 5312 x 2988 pixel. Guild Yel-Yel Competition Perlombaan on the spot, di acara RAGNAROK FESTIVAL 2016, mpersiapkan Guildmu mulai sekarang ! ^o^ Durasi maximal yel-yel 30 detik per guild. Jumlah anggota minimal 5 orang per guild. Memiliki Guild di RAGNAROK ONLINE INDONESIA minimal Guild level 5. Semua pendaftaran maksimal tanggal 16 Oktober 2016 kecuali yang yel Info lebih lanjut | idRO
  10. di file homunculus_db.txt bagian atas kan ada itu structure-nya, ikutin aje. klo ga coba post di mari isinya Dek. (Kilana mana? :v)
  11. if you fine with the paid mod, I can "help" you
  12. "manual" apply this diff https://github.com/rathena/rathena/commit/0647b159a8c6e96024deb72e63b1ce9e9a23320a.diff This the file diff --git a/src/map/clif.c b/src/map/clif.c the changes are around that line, if you can't found the exact line, try find the codes inside this function. - lines mean "line removed" + lines mean "line added"
  13. Related with Issue:#1391 Fix at Pull: 1472
  14. Anyone like to share the achievement packets from/to Client <-> Map-server with the notations? Would be nice if can be shared. The only info on current db only the packet header & length.. Thank you. // Achievement System 0x0A23,-1 // ZC_ALL_ACH_LIST 0x0A24,66 // ZC_ACH_UPDATE 0x0A25,6,dull,0 // CZ_REQ_ACH_REWARD 0x0A26,7 // ZC_REQ_ACH_REWARD_ACK // Title System 0x0A2E,6,dull,0 // CZ_REQ_CHANGE_TITLE 0x0A2F,7 // ZC_ACK_CHANGE_TITLE 0x0A30,106 // ZC_ACK_REQNAMEALL2
  15. u need the item is equipped (example Knife), then check its ID by equipment_slot by other script, then run the setrandomoption script. This is script that I use to test prontera,151,158,3 script getequiprandomoption0 123,{ mes "ROA_ID"; for (.@i = 0; .@i < 10; .@i++) { mes ""+getequiprandomoption(.@i,0,ROA_ID)+" "+getequiprandomoption(.@i,1,ROA_ID)+" "+getequiprandomoption(.@i,2,ROA_ID)+" "+getequiprandomoption(.@i,3,ROA_ID)+""; } close; } prontera,151,155,3 script getequiprandomoption1 123,{ mes "ROA_VALUE"; for (.@i = 0; .@i < 10; .@i++) { mes ""+getequiprandomoption(.@i,0,ROA_VALUE)+" "+getequiprandomoption(.@i,1,ROA_VALUE)+" "+getequiprandomoption(.@i,2,ROA_VALUE)+" "+getequiprandomoption(.@i,3,ROA_VALUE)+""; } close; } prontera,151,152,3 script getequiprandomoption2 123,{ mes "ROA_PARAM"; for (.@i = 0; .@i < 10; .@i++) { mes ""+getequiprandomoption(.@i,0,ROA_PARAM)+" "+getequiprandomoption(.@i,1,ROA_PARAM)+" "+getequiprandomoption(.@i,2,ROA_PARAM)+" "+getequiprandomoption(.@i,3,ROA_PARAM)+""; } close; } prontera,154,155,3 script setrandomoption 123,{ .@j = 1; for (.@i = 0; .@i < 10; .@i++) { setrandomoption(.@i,0,.@j,rand(1,20),.@j<<2); .@j++; setrandomoption(.@i,1,.@j,rand(1,20),.@j<<2); .@j++; setrandomoption(.@i,2,.@j,rand(1,20),.@j<<2); .@j++; setrandomoption(.@i,3,.@j,rand(1,20),.@j<<2); .@j++; } end; } prontera,157,158,3 script cgetequiprandomoption0 123,{ mes "ROA_ID"; for (.@i = 10; .@i < 21; .@i++) { mes ""+getequiprandomoption(.@i,0,ROA_ID)+" "+getequiprandomoption(.@i,1,ROA_ID)+" "+getequiprandomoption(.@i,2,ROA_ID)+" "+getequiprandomoption(.@i,3,ROA_ID)+""; } close; } prontera,157,155,3 script cgetequiprandomoption1 123,{ mes "ROA_VALUE"; for (.@i = 10; .@i < 21; .@i++) { mes ""+getequiprandomoption(.@i,0,ROA_VALUE)+" "+getequiprandomoption(.@i,1,ROA_VALUE)+" "+getequiprandomoption(.@i,2,ROA_VALUE)+" "+getequiprandomoption(.@i,3,ROA_VALUE)+""; } close; } prontera,157,152,3 script cgetequiprandomoption2 123,{ mes "ROA_PARAM"; for (.@i = 10; .@i < 21; .@i++) { mes ""+getequiprandomoption(.@i,0,ROA_PARAM)+" "+getequiprandomoption(.@i,1,ROA_PARAM)+" "+getequiprandomoption(.@i,2,ROA_PARAM)+" "+getequiprandomoption(.@i,3,ROA_PARAM)+""; } close; } prontera,160,155,3 script csetrandomoption 123,{ .@j = 20; for (.@i = 10; .@i < 21; .@i++) { setrandomoption(.@i,0,.@j,rand(1,20),.@j<<2); .@j++; setrandomoption(.@i,1,.@j,rand(1,20),.@j<<2); .@j++; setrandomoption(.@i,2,.@j,rand(1,20),.@j<<2); .@j++; setrandomoption(.@i,3,.@j,rand(1,20),.@j<<2); .@j++; } end; }
  16. yes, as long as you know how to do it is there any tutorial ? If u're using MSVS, something like: open core.h file. Find: #define PACKET_OBFUSCATION. Righ-click on PACKET_OBFUSCATION, select Find All References. Copy source block inside it. Find proper/equal lines for the old rAthena, paste there. Copy the keys on packet_db.txt to old rAthena's packet_db.txt
  17. Modified `castcancel` field on skill_db with value "always" Someone (Gm Sour) asked a question Now, after use this diff, change the castcancel value to "always", the skill will ignores bonus bNoCastCancel or bonus bNoCastCancel2. Example: 10013,0,0,4,0,0x3,0,1,0,always,0,0x10,0,none,0,0x40, GD_EMERGENCYCALL,Urgent CallDownload: castcancel-always-rA-8da71a12.diff
×
×
  • Create New...