Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. the credit from flux cp work differently ... by default, the NPC that used to redeem item from fluxcp itemshop is included in the flux cp files.
  2. nope ... i didnt add that ... you can add it below the npc header if( BaseLevel < 99 ){ mes "Only Base Level 99 can use."; close; } something like this.
  3. // Legend for 'Flag' field (bitmask): // 1 - restricted in normal maps // 2 - restricted in PVP // 4 - restricted in GVG // 8 - restricted in Battlegrounds When i Choose 8 does it automatically ignore PVP GVG WOE MAPS? use "6" ( 2 + 4 )
  4. i see ..... long time didnt play RO already ... already forgotten the way to bypass berserk when the HP keep on reducing ... i didnt really used setoption in any script due to the explaination given in script_documentation isnt really clear for me. but i think i saw it using @option instead of setoption ...LOL... seem like it has been wrong since the very beginning ... O__O btw...the infinite message...can be bypass due to this src/config/secure.h#L39
  5. erm ... just like other simple bot script did... sc_berserk + setoption ?? sc_berserk will prevent them from using skills or chat (command)
  6. rentitem 5022,( 5 * 86400 ); rentitem = item id + rental time in second db/re/item_trade.txt = item restriction
  7. http://www.youtube.com/watch?v=E3DAsbuCc8g
  8. lol ... O__O thx annie ... ** how come i never noticed these error ... >.<
  9. @Annie. .. owh ... xD seem like i write the IF-ELSE condition wrongly .. suppose to be like this. if( .@check_progress & 8 && ( !.@branch_progress && !.@class_progress ) ){ if( .@job_branch_bitmask && .@class_progress ){ i make it available to available to all 1-1 class , and inherite it to their advanced class. thx for pointing out sifu ~ xP
  10. erm...i remember that it's enabled for all 1-1 job by default ... i didnt add any settings to limit 1-1 job ...the job limitation work after 1-1 job. just as annie stated, dont need to change it. the only things that you might need to change is just the npc column. ( might affected when changing NPC number ) and if there are any changes regarding SQL table, normally i will inform it during the updates =) yes... will have to alter the table to add this.. =)
  11. New Updates : Mission Board 1.2Fixed mob/item adding bugs Change how mission NPC naming Enable All Classes by default when setup mission Shorten some menu length Auto remove NPC if it's named wrongly or max NPC reached. https://rathena.org/board/index.php?/files/file/3089-%7B?%7D/ feel free to report if you found any potential bugs / exploits..
  12. ya...just noticed it ...xD but his problem seem like different ... in his screenshot, he cant see any npc name..O__O but i can view the npc name.. weird.. anyway...detected a few possible bug ..xD gonna fix it when i have time ...
  13. @Code Hunter seem fine for me ...... btw...the number behind NPC should not jump .. @kido could it be you added wrong mob id ? some monster are used for event only.
  14. maybe this can help ? db/re/item_combo_db.txt xxx:4128,{ unequip EQI_HAND_L; } xxx = your headgear id
  15. post your full script. is this setup quest step ?? did you added any npc to offer this quest when you setup the quest ??
  16. in new client..the quest are setup in LUB files within the GRF =) maybe use those quest mission npc that already exist in rAthena ? https://rathena.org/board/index.php?/files/file/3089-%7B?%7D/ /npc/custom/quests/quest_shop.txt npc/custom/quests/hunting_missions.txt i guess all are easily setup and "doesnt consume alot lines" ??
  17. you mean change the cashpoint to player based and not account based ?? then just use CASHPOINTS <-------- player based variable
  18. OnMinute00: // <--------------- ADD THIS Announce "Satan Catcher Event is being held!",bc_all; sleep 5000; Announce "The warp portal has appeared in prontera!",bc_all;
  19. http://rathena.org/board/topic/90738-itemtype-update-read-this-very-important/
  20. one whole gang of best friend after school , went to cyber cafe play English Ragnarok Online ( one of Malaysia Official Server - ERO )....hunting for MVP Baphomet at Labyrinth .... and yell and scream together when slayed the MVP !! and..celebrate...!! xD ** one of the best memories **
  21. change mes .@npcname$; mes "Okie dokie!"; mes "You'll have to relog for you name to change."; close2; query_sql "UPDATE `char` SET `name` = '"+.@newname$+"' WHERE `char_id` = '"+getcharid(0)+"'"; end; to mes .@npcname$; mes "You need to pay 100 gold."; if( countitem(969) < 100 ) close; delitem 969,100; mes "Okie dokie!"; mes "You'll have to relog for you name to change."; close2; query_sql "UPDATE `char` SET `name` = '"+.@newname$+"' WHERE `char_id` = '"+getcharid(0)+"'"; end;
  22. [jobtbl.JT_BLUE_HELL_CENTAUR] = "Blue_Hell_Centaur", <------- REMOVE COMMA ["JT_4_F_BLUE_HELL_CENTAUR"] = 646, <------------ REMOVE COMMA the very last entry of these lua file dont need a comma.
  23. follow the way how duplicated npc are named. // the number behind the NPC name must be above 1000 ( if you had not changed another ) // you can have 127 npcs. prontera,151,171,4 duplicate(mission_board) Prontera Mission::1001 837 prontera,155,171,4 duplicate(mission_board) Byalan Mission::1002 837 prontera,159,171,4 duplicate(mission_board) Payon Cave Mission::1003 837 1001 ~ 1127
  24. show what you have edited ...probably a missing comma ??
  25. maybe you have some npc script that reset your char stats to 1 ...
×
×
  • Create New...