Jump to content

rmon008

Members
  • Posts

    80
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    UAE
  • Server
    nothing

Recent Profile Visitors

2296 profile views

rmon008's Achievements

Poring

Poring (1/15)

1

Reputation

1

Community Answers

  1. i've checked the application.php but i can't see the Download Rules Features here's my application.php 'MenuItems' => array( 'Main Menu' => array( 'Home' => array('module' => 'main'), //'Forums' => array('exturl' => 'http://www.fluxro.com/community'), ),
  2. Guide Here: http://rathena.org/wiki/Custom_Items tried all (2^10) 1024 = Costume Upper headgear(2^11) 2048 = Costume Middle headgear(2^12) 4096 = Costume Lower headgear(2^13) 8192 = Costume Garment/Robe still same appearance
  3. why the item id is still unknown item(apple) [inside data folder] idnum2itemdisplaynametable.txt 30147#MVP Ticket# idnum2itemresnametable.txt 30147#¿µÁÖÀÇÅëÇàÁõ# idnum2itemdesctable.txt 30147# ^000088MVP Ticket^000000 # [inside System folder] iteminfo.lub [30147] = { unidentifiedDisplayName = "MVP Ticket", unidentifiedResourceName = "¿µÁÖÀÇÅëÇàÁõ", unidentifiedDescriptionName = { "^000088MVP Ticket^000000", "^000088[MVP Ladder Warper]^000000", }, identifiedDisplayName = "MVP Ticket", identifiedResourceName = "¿µÁÖÀÇÅëÇàÁõ", identifiedDescriptionName = { "^000088MVP Ticket^000000", "^000088[MVP Ladder Warper]^000000", }, slotCount = 0, ClassNum = 0 }, [ in my sql file ( item_db2 ) ] '30147', 'MVP Ticket', 'MVP Ticket', '3', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
  4. MGA BRO ! why the item id is still unknown item(apple) [inside data folder] idnum2itemdisplaynametable.txt 30147#MVP Ticket# idnum2itemresnametable.txt 30147#¿µÁÖÀÇÅëÇàÁõ# idnum2itemdesctable.txt 30147# ^000088MVP Ticket^000000 # [inside System folder] iteminfo.lub [30147] = { unidentifiedDisplayName = "MVP Ticket", unidentifiedResourceName = "¿µÁÖÀÇÅëÇàÁõ", unidentifiedDescriptionName = { "^000088MVP Ticket^000000", "^000088[MVP Ladder Warper]^000000", }, identifiedDisplayName = "MVP Ticket", identifiedResourceName = "¿µÁÖÀÇÅëÇàÁõ", identifiedDescriptionName = { "^000088MVP Ticket^000000", "^000088[MVP Ladder Warper]^000000", }, slotCount = 0, ClassNum = 0 }, [ in my sql file ( item_db2 ) ] '30147', 'MVP Ticket', 'MVP Ticket', '3', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
  5. I found exploit on refine_master https://github.com/rathena/rathena/blob/master/npc/re/merchants/ticket_refiner.txt if i already have +4 weapon then i use +9 refine ticket in refine master refine will be +13 any fix for it ?
  6. i want to delete for example all yggdrasil berry in all the monster ( all monster thats normally dropping yggdrasil berry will no longer drop ygg drasil berry ) any sql command i can use ?
  7. can this work with latest rathena git ? 12108?
  8. if( #HuntRoomDelay > gettimetick(2) ){ set .last,#HuntRoomDelay - gettimetick(2); set .@min, .last % ( 24 * 3600 ) % 3600 / (60); mes "Wait for ^FF0000"+.@min+" Minutes^000000."; close; // Adding X Minutes of Delay before can go in again. set .DelayMin,1080; how to change the minutes display , because it only until 59 then will go back to 59
  9. i tried to apply this patch on FRESH COPY rev12108 but still id on item_vending.txt is not showing anyone please ?
  10. if( #HuntRoomDelay > gettimetick(2) ){ set .last,#HuntRoomDelay - gettimetick(2); set .@min, .last % ( 24 * 3600 ) % 3600 / (60); mes "Wait for ^FF0000"+.@min+" Minutes^000000."; close; // Adding X Minutes of Delay before can go in again. set .DelayMin,1080; how to change the minutes display , because it only until 59 then will go back to 59
  11. i made a script for rune boots because i want this to release on my server but the problem is the matk +% is not working When pure STR is 90 or higher, ATK + 10. When pure STR is 120 or higher, ATK + 10 additionally. When pure INT is 90 or higher, MATK + 3%. When pure INT is 120 or higher, MATK + 2% additionally. bonus bUnbreakableShoes,0; if(readparam(bStr)>=90){ bonus bBaseAtk,10; }; if(readparam(bStr)>=120){ bonus bBaseAtk,10; }; if(readparam(bInt)>=90){ bonus bMatkRate,3; }; if(readparam(bInt)>=120){ bonus bMatkRate,2; }; anyone please ? thank you ...
×
×
  • Create New...