Jump to content

mrfizi

Members
  • Posts

    298
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by mrfizi

  1. check your /conf/char_athena.conf Can refer HERE original rAthena setup.
  2. Wow! Good news and good work @Rytech
  3. Setelah hampir 10tahun cadangan ini, akhirnya kepupusan sprite ini semakin dirasai. Semakin banyak sprite custom item dan juga map telah pupus. ?
  4. Rasanya ramai dev server dari Malaysia dan Indonesia yang masih aktif. Tak kira yang baru atau yang lama semoga semuanya sihat dan kekal selamat dalam menempuh pandemik Covid-19 ini.
  5. just remove it. No need to change it to 0. Drops: - Item: Worn_Out_Page Rate: 4000 - Item: Bookclip_In_Memory Rate: 300 - Item: Legend_Of_Kafra01 Rate: 50 - Item: Bloody_Page Rate: 500 - Item: Cookbook08 Rate: 2 - Item: Cookbook09 Rate: 1 - Item: Deathword_Card Rate: 1 StealProtected: true
  6. Hai semua developer Malaysia/Indonesia/Singapura/Brunei, Saya sedang mencari FluxCP Theme percuma atau beli versi fluxcp rathena selain daripada yang ada secara PERCUMA di bahagian download. Jika ada sila beritahu saya dan kalau theme custom untuk dijual kalau boleh dalam Ringgit Malaysia (RM). Terima kasih.
  7. Tambah pada Menu bahagian Instances: // -------------------------------------------------- Instances: // -------------------------------------------------- menu "Bakonawa Lake",I1, "Bangungot Hospital 2F",I2, "Buwaya Cave",I3, "Devil Tower",I4, "Eclage Interior",I5, "Endless Tower",I6, "Faceworms Nest",I7, "Geffen Magic Tournament",I8, "Ghost Palace",I9, "Hazy Forest",I10, "Horror Toy Factory",I11, "Malangdo Culvert",I12, "Nidhoggur's Nest",I13, "Octopus Cave",I14, "Old Glast Heim",I15, "Orc's Memory",I16, "Sarah and Fenrir",I17, "Sara Memory",I18, "Sealed Shrine",I19, "Wolfchev's Laboratory",I20, "Morse Cave",I21, "Sky Fortress",I22, "Ilse Bios",I23; Tambah koordinat: I16: @z = 1000; Go("gef_fild10",240,198); I17: @z = 1000; Restrict("RE"); Go("dali02",92,141); I18: @z = 1000; Restrict("RE"); Go("dali",133,108); I19: @z = 1000; Go("monk_test",306,143); I20: @z = 1000; Restrict("RE"); Go("lhz_dun04",148,269); I21: @z = 1000; Go("map_name1",xxx,yyy); I22: @z = 1000; Go("map_name2",xxx,yyy); I23: @z = 1000; Go("map_name3",xxx,yyy); // -------------------------------------------------- Special: // -------------------------------------------------- Harap membantu.
  8. Jika anda menggunakan Windows, Method 1 adalah paling mudah untuk anda memuat turun. Segala arahan telah diberikan jelas pada link yang anda beri. Hanya klik pada link di Method 1.
  9. Sudah berhabuk juga topic ini. Setelah lama tidak bergiat dalam pembikinan server private, kini saya kembali atas permintaan kawan-kawan untuk membuka midrate server. Saya ingin meminta bantuan sekiranya ada sesiapa yang tahu dimana ingin mencari/membeli Flux Theme khas untuk server saya. Jika boleh, boleh dibeli dengan nilai Ringgit Malaysia (RM). Terima kasih.
  10. baru2 aktif kembali. hahaha.. Feb 2021
  11. Begitu juga di Malaysia. Suram juga. Hehe.. Sebaiknya bergabung menjadi satu server. Baru boleh lawan official server
  12. Mujur masih ada pemaju ragnarok dari Malaysia dan Indonesia yang masih aktif.
  13. https://github.com/rathena/rathena/blob/master/doc/item_bonus.txt you can learn from link above
  14. @Emistry do you have any copy or mirror link for this file?
  15. Hello rAthena, I would like to request working OBB Quest. In the latest github, the quest not working like classic style/quest obb. For who have the OBB Quest file, can share it to me? Thank you.
  16. Thank you for your fast reply. It's work now. Thank you so much.
  17. rathena/conf/char_athena.conf // Server name, use alternative character such as ASCII 160 for spaces. // NOTE: Do not use spaces or any of these characters which are not allowed in // Windows filenames \/:*?"<>| // ... or else guild emblems won't work client-side! server_name: YourRagnarokServer
  18. Item Box problem. Array just read 2 Item from my list. function script ROMYAngelScroll { setarray .i1[0],13758,12221,7621; // Common Items set .i1rand,rand(0,1); setarray .i2[0],12259,12437,12412; // Rare Items 11-15% set .i2rand,rand(0,1); setarray .i3[0],18526,5660; // Rare Items 16-40% set .i3rand,rand(0,1); setarray .i4[0],19859,20500,5505; // Super Rare Items set .i4rand,rand(0,1); set .chance, rand(100); // Super Rare Item 1-10% if (.chance >= 1 && .chance <= 10){ getitem .i4[ .i4rand ],1; announce "["+strcharinfo(0)+"] has just obtained a ["+getitemname(.i4[ .i4rand ])+"] from the Angel Scroll.",0; end; } // Rare Item 11-15% else if (.chance >= 11 && .chance <= 15){ getitem .i3[ .i3rand ],1; end; } // Rare Item 16-35% else if (.chance >= 16 && .chance <= 35){ getitem .i2[ .i2rand ],3; end; } // Common Items else if (.chance >= 36 && .chance <= 100) { getitem .i1[ .i1rand ],1; end; } } Above is script that I'm using for my custom box. I got problem with this script. setarray just read only 2 item from my list. setarray .i1[0],13758,12221,7621; // <=---- example this line, i put 3 item, but only 2 item 13758 and 12221 i can get from my box. Even I tried 200 times, still not got item 7621. Hope someone can help me about this. Thank you.
  19. There is script by @Emistry that same like what I want. Link: But the problem is, how to make certain item can got 3, 2 and some item only got 1.. This is the item in the box for example: When player click/open the box, it give random item like * 1 rune hem / 1 wing / 1 costume / 3 miracle tonic / 3 Field Manual / 3 speed pot / 2 token of Sieg.
  20. Hello rAthena, I need a guide for make a new custom box like OBB. I have tried to make like old style and search in forum. But I failed to make it. Old guide is not compatible with the latest rAthena. Can someone help me? Thank you.
  21. Please check again your script. You missing this " } "
  22. +1 for you. Thank you so much @jchcc
  23. Don't use @reloadscript .. Better restart your server. I've got the same problem before. I prefer to restart the server than @reloadscript . Than the problem solve.
×
×
  • Create New...