Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. I believe it's set in the mob_skill_db.txt teleport skill with condition of rudeattacked.
  2. Emistry

    Script

    you're using the newer version of rathena. your script is outdated already. update your script to use these new script command and database.
  3. fix your npc script that provide these bonus.
  4. Please follow the Script Release Rules and Regulations. Please update your topic. Beside ... set PoringKills,PoringKills == 0; set LunaticKills,LunaticKills == 0; I believe should be PoringKills = 0; LunaticKills = 0; If you just planning to give some monster hunting quests, it's better to use the db/quest_db.txt it's more efficient and easier to control.
  5. just remove the debugmes if you dont want it... it's not really needed.
  6. https://rathena.org/board/topic/74160-remove-buff-from-gospel-when-enter-a-map/?p=155648 http://www.eathena.ws/board/index.php?showtopic=223529
  7. i think you could also try langtype 10 and 11 .... universal langtype. support various of languages.
  8. if ( isequippedcnt( 3183,3189,3522,3528,3503,3509,25626 ) == 1 ) { bonus bAllStats,13; bonus2 bAddRace,RC_DemiHuman,15; } use isequippedcnt
  9. https://rathena.org/board/topic/102236-payouts/?p=287992 There already exist one topic that discuss about the payout issues.
  10. OnClock0000: OnClock0300: OnClock0600: ... ... disablenpc strnpcinfo(0); end;
  11. [Fatal Error]: File not found: conf/inter_athena.conf make sure you have all the complete conf files.
  12. -- Remove char custom sprite display UPDATE `char` SET `hair_color` = '0', `clothes_color` = '0', `head_top` = '0', `head_mid` = '0', `head_bottom` = '0', `robe` = '0' -- Unequip all equipments. UPDATE `inventory` SET `equip` = '0'
  13. use boxes to give the rental items. sell these boxes in cashshop instead of items itself.
  14. invalid langtype ... invalid login background screen ... invalid login screen texture files ... etc
  15. perhap you assigned a wrong user to allow connection to your database ??
  16. the picklog stored everything you need. item that sold / buy from npc shop. as well as the map too. just enable the log features as stated by Capuche.
  17. if you have root access to your VPS, you can alter the timezone of your VPS. if you are not authorized to do so, contact your host. adjust using the gettime - 3 isnt an ideal way to do this....
  18. prontera,155,165,5 script Sample#thanatos 757,{ mes "Summon Thanatos ?"; mes " "; mes "You need:"; for ( .@i = 0; .@i < .required_item_size; .@i++ ) { mes " > "+getitemname( .required_item[.@i] ); if ( !countitem( .required_item[.@i] ) ) .@fail++; } if ( select( "Take it","Cancel" ) == 1 ) { if ( getmapusers( .map$ ) ) { mes "Someone already inside it."; } else if ( !.@fail ) { for ( .@i = 0; .@i < .required_item_size; .@i++ ) delitem .required_item[.@i],1; warp .map$,0,0; killmonsterall .map$; monster .map$,0,0,"--ja--",1708,1; } else { mes "You didnt meet the requirement."; } } close; OnInit: .map$ = "evt_coke"; setarray .required_item, 7436, 7437, 7438, 7439; .required_item_size = getarraysize( .required_item ); getmapxy( .@npc_map$,.@npc_x,.@npc_y,1 ); setmapflagnosave( .map$,.@npc_map$,.@npc_x,.@npc_y ); end; }
  19. http://www.eathena.ws/board/index.php?showtopic=274088 http://www.eathena.ws/board/index.php?s=&showtopic=207526&view=findpost&p=1139257
  20. Oh great.. this would be better than what I have expected =D A new "and separated Advanced Search" window. EDIT: Is it possible to have the "Extract All Selected Files" option in the Advanced Search window ? =D
×
×
  • Create New...