Jump to content

Mhalicot

Community Contributors
  • Content Count

    1971
  • Joined

  • Last visited

  • Days Won

    37

Everything posted by Mhalicot

  1. ^ Hi, quote this. I think what he want is offline converter.
  2. check your item DB and check for does item ID. it is because of your custom items.
  3. actually there is available item db converter in tools folder source: Item DB file structure overhaul
  4. it is normal if you diff your client restore login window.
  5. ^LOL, @TS that why server has Maintenance so that you can add/update features you want to add/update. So if your server doesnt have any crash problem, I think its good to go
  6. Mhalicot

    Adding map erro

    It seems you solved your problem already
  7. It's my pleasure to help :)

  8. ^dont be confused of does skills, you can see your real skills at Misc. tab.
  9. yeah it will change your sprite, and you can still use your original job skill, check your misc. tab. what you see that the script change your job is just an illusion..
  10. add this checking in your script, if( select("Yes, proceed:No, I am sorry.") == 2 ) { mes "[Clown]"; mes "Need some time to think about it, huh?"; mes "Alright, I can understand."; close; } if ( countitem(7227) < 100 ) { // Check the required item mes "[Clown]"; mes "100TCG is Required..."; close; } a = getequipid(.@Part); delitem 7227,100; delitem a,1; getitem a,1;
  11. Now that's what I'm talking about, go to conf/battle/skill.conf and search for this line // Can ground skills NOT be placed underneath/near players/monsters? (Note 3)// If set, only skills with UF_NOFOOTSET set will be affected (skill_unit_db)skill_nofootset: 1 then set it to skill_nofootset: 0 then in your server type @reloadbattleconf and your done
  12. Have you try to use this? http://herc.ws/board/files/file/51-costume-system/?
  13. ^ if you think this is really a bug or something, kindly report this to Bug Tracker
  14. what do you mean by that? if this is another issue can you please post another or search for a similar topic?
  15. [AFK] Washing Clothes :)

  16. ^ if you realy want this to happen, This are 2 options you can do. 1.add this line to your group.conf skill_unconditional: true 2.or edit your skill.c and search for this line case RA_WUGMASTERY: if( pc_isfalcon(sd) || pc_isridingwug(sd) || sd->sc.data[SC__GROOMY] ) { clif->skill_fail(sd,skill_id,sd->sc.data[SC__GROOMY]?USESKILL_FAIL_MANUAL_NOTIFY:USESKILL_FAIL_CONDITION,0); return 0; } break; case RA_WUGSTRIKE: if( !pc_iswug(sd) && !pc_isridingwug(sd) ) { clif->skill_fail(sd,skill_id,USESKILL_FAIL_CONDITION,0); return 0; } break; case RA_WUGRIDER: if( pc_isfalcon(sd) || ( !pc_isridingwug(sd) && !pc_iswug(sd) ) ) { clif->skill_fail(sd,skill_id,USESKILL_FAIL_CONDITION,0); return 0; } then remove pc_isfalcon(sd) || and recompile your server.
  17. visit http://herc.ws/wiki/Custom_Items
  18. try to use *changebase <job ID number>; This command will change the appearance of the invoking character to that of a specified job class. Nothing but appearance will change. Example: OnEquipScript: <" changebase Job_Novice; "> // Changes player to Novice sprite. OnUnequipScript: <" changebase Class; "> // Changes player back to default sprite.
  19. change to 51? please read weapontable is located in luafiles
  20. Open your iteminfo.lub or lua then search Violet Fear then replace the ClassNum = 51 as simple as that then your done. [1185] = { unidentifiedDisplayName = "Violet Fear", unidentifiedResourceName = "¹Ù½ºÅ¸µå¼Òµå", unidentifiedDescriptionName = { "Unknown Item, can be identified by [Magnifier]", "Weight: ^777777220^000000", }, identifiedDisplayName = "Violet Fear", identifiedResourceName = "¹ÙÀ̿÷¿ÇǾî", identifiedDescriptionName = { "A huge violet Two-Handed Sword that's made from the Twin Swords of Naght Sieger.", "When attacking there is a chance that for 5 seconds you will completely disregard the Defence of the opponent.", "Has a chance of autocasting ^FF0000Lv. 3 Meteor Storm^000000 and/or ^FF0000Lv. 5 Frost Nova^000000 with each physical attack.", "Class: ^777777Two-handed Sword^000000", "Attack: ^777777275^000000", "Weight: ^777777220^000000", "Weapon Level: ^7777774^000000", "Required Level: ^77777780^000000", "Jobs: ^777777Transcendent Swordman Class^000000" }, slotCount = 2, ClassNum = 51 }, for more weaponsprite open your weapontable.lub
  21. some of episode lists http://ragnarok.wikia.com/wiki/List_of_Episode_Updates_(RO)
  22. ^what do you mean by this? is it like
  23. Mhalicot

    .mobcount

    ^ Hi, is your problem solved?
×
×
  • Create New...

Important Information

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