Jump to content

Ragnar Lothbrok

Members
  • Content Count

    317
  • Joined

  • Last visited

  • Days Won

    3

Reputation Activity

  1. Upvote
    Ragnar Lothbrok got a reaction from Jedzkie in [Showcase] Thor Patcher   
    Added New Patchers:
     
    Snow Thor

     
    Desert Thor:

     
    Dungeon Thor:

     
    Sky Thor:

     
    Ocean Thor:




  2. Upvote
    Ragnar Lothbrok got a reaction from Noil in [Showcase] Thor Patcher   
    Added New Patchers:
     
    Snow Thor

     
    Desert Thor:

     
    Dungeon Thor:

     
    Sky Thor:

     
    Ocean Thor:




  3. Upvote
    Ragnar Lothbrok got a reaction from Noil in [Showcase] Thor Patcher   
    Update: Added New Patcher Design
     

  4. Upvote
    Ragnar Lothbrok got a reaction from Noil in [Showcase] Thor Patcher   
    If you are interested, just PM me for details..
     
     
     
  5. Upvote
    Ragnar Lothbrok got a reaction from lichtgestalt in help please i cant login in my server   
    check this one it should be like this...
     
    char-server.conf

    map-server.conf

    subnet.conf
  6. Upvote
    Ragnar Lothbrok got a reaction from apuadofrancisco in [Compile Error] Latest update in Hercules 05-31-15   
    it should be like this:
     
  7. Upvote
    Ragnar Lothbrok got a reaction from Black Box in [Compile Error] Latest update in Hercules 05-31-15   
    it should be like this:
     
  8. Upvote
    Ragnar Lothbrok got a reaction from Nidhogg in How to use custom palletes?   
    data/sprite/npc
     
    then add it on luafiles/datainfo/NPCIdentity.lua
  9. Upvote
    Ragnar Lothbrok got a reaction from Linne in Help, error in the map-server   
    what about you inter-server.conf? like this?
     
  10. Upvote
    Ragnar Lothbrok got a reaction from depomguss in Change item name color   
    name is already black w/ or w/o slot
  11. Upvote
    Ragnar Lothbrok got a reaction from depomguss in Change item name color   
    no slot item is purple color, 1 slot yellowish, 2 slots cyan, 3 slot green
  12. Upvote
    Ragnar Lothbrok got a reaction from depomguss in Change item name color   
    old and newer
     

  13. Upvote
    Ragnar Lothbrok got a reaction from iZeal in are costumes also available on 2010-07-30a Client?   
    Only headgears supported, upper, mid, lower
  14. Upvote
    Ragnar Lothbrok got a reaction from iZeal in Best pre-re stable client I can use?   
    Yes you can... i'm using that client.. here http://rathena.sourceforge.net/tools/diff_patcher.php?client=2010-07-30aRagexeRE
  15. Upvote
    Ragnar Lothbrok got a reaction from waaa123 in help newbie here   
    first the directory for accessoryid.lua and accname.lua is hir dataluafiles514lua filesdatainfo.
    second 2013-08-07 client is no longer idnum2itemresnametable ,idnum2itemdisplaynametable
    idnum2itemdesctable it is already using iteminfo.lua that is hir RagnarokSystem
  16. Upvote
    Ragnar Lothbrok got a reaction from WalkingBad in PK Title   
    Please help me on this: Please! Please! Please!
     
    1. The Title will only be activated if the player have 200 kills,400 kills,600 kills,800 kills, 1k kills..
     
     
    Thanks!
    Thanks!
    Thanks!
  17. Upvote
    Ragnar Lothbrok got a reaction from WalkingBad in 2013 Clients that read .........   
    go to system folder change your iteminfo.lub to iteminfo.lua.. and use this http://herc.ws/board/topic/398-client-translation-project/
     
     
    remember to change mmo.h
     
    #ifndef PACKETVER
    #define PACKETVER 20130807
  18. Upvote
    Ragnar Lothbrok got a reaction from Phoenix in [Guide] Setting-Up 2013 Clients   
    oops! sorry try this one  http://www.mediafire.com/?bb6xw4331lrtd7v
  19. Upvote
    Ragnar Lothbrok got a reaction from jaBote in R> @ecall command   
    i just use this one http://rathena.org/board/topic/74425-ec-or-ecall/?hl=%2Bemergency+%2Bcall#entry157395
  20. Upvote
    Ragnar Lothbrok reacted to Mikado in N > help on status icon   
    Yes it is. Remember:
     
    Status.h:
    Find and change this
    SI_MAX,}; To this
    // Custom property icons SI_PROPERTY_FIRE = 0, SI_PROPERTY_WATER = 0, SI_PROPERTY_EARTH = 0, SI_PROPERTY_WIND = 0, SI_MAX,}; Change each one to suit your desired icon ID.
     
    status.c
    Find and change this
    case SC_ARMORPROPERTY: case SC_ARMOR_RESIST: break; to this
    case SC_ARMORPROPERTY: // val1 = water | val2 = earth | val3 = fire | val4 = wind if( sd ) { if (val1 > 0) clif->status_change(bl,SI_PROPERTY_WATER,1,tick,0,0,0); else clif->sc_end(&sd->bl, sd->bl.id, SELF, SI_PROPERTY_WATER); if (val2 > 0) clif->status_change(bl,SI_PROPERTY_EARTH,1,tick,0,0,0); else clif->sc_end(&sd->bl, sd->bl.id, SELF, SI_PROPERTY_EARTH); if (val3 > 0) clif->status_change(bl,SI_PROPERTY_FIRE,1,tick,0,0,0); else clif->sc_end(&sd->bl, sd->bl.id, SELF, SI_PROPERTY_FIRE); if (val4 > 0) clif->status_change(bl,SI_PROPERTY_WIND,1,tick,0,0,0); else clif->sc_end(&sd->bl, sd->bl.id, SELF, SI_PROPERTY_WIND); } case SC_ARMOR_RESIST: break;  
    Find and change this (I've got to copy this entire block so you don't get lost, remember this is when status icons for SC_ITEMSCRIPT actually ENDS)
    case SC_ITEMSCRIPT: if( sd ) { switch( sce->val1 ) { //case 4121://Phree //case 4047://Ghostring case 4302://Gunka clif->sc_end(&sd->bl, sd->bl.id, SELF, SI_MVPCARD_TAOGUNKA); To this:
    case SC_ARMORPROPERTY: if( sd ) { if( sce->val1 ) clif->sc_end(&sd->bl, sd->bl.id, SELF, SI_PROPERTY_WATER); if( sce->val2 ) clif->sc_end(&sd->bl, sd->bl.id, SELF, SI_PROPERTY_EARTH); if( sce->val3 ) clif->sc_end(&sd->bl, sd->bl.id, SELF, SI_PROPERTY_FIRE); if( sce->val4 ) clif->sc_end(&sd->bl, sd->bl.id, SELF, SI_PROPERTY_WIND); } case SC_ITEMSCRIPT: if( sd ) { switch( sce->val1 ) { //case 4121://Phree //case 4047://Ghostring case 4302://Gunka clif->sc_end(&sd->bl, sd->bl.id, SELF, SI_MVPCARD_TAOGUNKA);  
    And I think that will do the trick.
  21. Upvote
    Ragnar Lothbrok reacted to Mumbles in Resist Potion = Effect Stone Curse   
    Here's a comparison of the status conditions before and after they were changed.
     
    Status List r497/r246 by Valil
  22. Upvote
    Ragnar Lothbrok reacted to Emistry in Resist Potion = Effect Stone Curse   
    i think it has changed to this
    https://github.com/HerculesWS/Hercules/blob/master/db/const.txt#L894
     
     
    https://github.com/HerculesWS/Hercules/blob/master/db/const.txt#L947
  23. Upvote
    Ragnar Lothbrok reacted to Emistry in Resist Potion = Effect Stone Curse   
    resist potion ...reduct damage taken from certain element but also increase the damage taken from opposite element..
     
    armor element .... simply change your armor to certain element...
     
    mega resist potion ...increase the resistance against certain negative statuses...
  24. Upvote
    Ragnar Lothbrok reacted to Emistry in Can anyone help me on this script   
    if (killedrid == getcharid(3) || rand(100) > 40 ) end;
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.