Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. you can use it in your server .... like i said in previous post. ..... you cant take my free scripts and sell to other members to earn profits. everything that's free....stay free forever ... you can share ...but you cant sell ...
  2. @xRaisen hmm ?? only for display ?? you're not allow to take all these script and SELL it to another person in any form. You can share to other...but you cant involve it with money.
  3. finally there are some member who willing to work on custom status icon... =)
  4. npc ID isnt obtain from getcharid ....lol it's obtained from getnpcid
  5. tried this ? src/map/status.h#L810 SI_UNDEAD = 97,
  6. split the array to 2 array ... setarray .item_id,........ setarray .item_cost,....... .@size = getarraysize( .item_id ); for( .@i = 0; .@i < .@size; .@i++ ) npcshopadditem "Costume_SHOP",.item_id[.@i],item_cost[.@i];
  7. setarray .@eq,5011,5001; .@size = getarraysize( .@eq ); for( .@i = 0; .@i < .@size; .@i++ ) if( countitem( .@eq[.@i] ){ mes "You cant take "+getitemname( .@eq[.@i]; close; } warp "prontera",155,181; end; anyway...still have no idea why wouldnt you just pick the better way instead of picking the way done by script which can be bypass by characters
  8. i think you need to change your permission for data/logs/ folder to be writable
  9. if ( select ( "yes", "no" ) == 2 ) close; if ( !getequipisequiped( EQI_ARMOR ) ) { mes "you did not equip an armor at the moment"; close; } change to .@equip = select( "Top","Armor","L-Hand","R-Hand","Garment","Shoe","Acc L","Acc R","Mid","Low" ); if ( !getequipisequiped( .@equip ) ) { mes "you did not equip an equip there"; close; } then change all EQI_ARMOR to .@equip
  10. renewal skill-balancing ... ==''
  11. npc/guild/agit_main.txt#L1132 it only spawned during 12:01AM server time...but not during server/script reloaded
  12. you can read this as reference... http://www.eathena.ws/board/index.php?s=126f1dea16ce16b4ac3cd6fc3160da3c&showtopic=181741&view=findpost&p=998360 for your case...definitely SQL better
  13. it depend on how and where you store the vote point then it depend on how your npc going to retrieve it and use it
  14. Emistry

    100 click

    up to you....you can still put that if you afraid the counter is not cleared
  15. Emistry

    100 click

    prontera,155,181,5 script click_100_npc 757,{ @click++; if( @click % 100 == 0 ){ getitem 512,1; dispbottom "Get item per 100 click"; } else{ dispbottom @click+" click."; } end; }
  16. http://www.eathena.ws/board/index.php?s=&showtopic=181741&view=findpost&p=1478950
  17. you can just try to make use of the SQL ....to search data ... Log Setting : conf/import/log_conf.txt enable_logs: 0x00008 sql_logs: yes log_filter: 2048 rare_items_log: 100 Query : SELECT c.`name` AS `Name`, i.`name_japanese` AS `Item`, p.`map` AS `Map`, p.`time` AS `Time` FROM `picklog` AS `p` INNER JOIN `char` AS `c` ON c.`char_id` = p.`char_id` INNER JOIN `item_db_re` AS `i` ON i.`id` = p.`nameid` WHERE p.`nameid` = 938 # <-- replace item_id here ORDER BY p.`time` DESC Edit Item ID here .... WHERE p.`nameid` = 938 # <-- replace item_id here Result :
  18. http://eathena-project.googlecode.com/svn/trunk/npc/custom/jobs/jobmaster.txt
  19. prontera,0,0,0,0 monster Poring 1002,100,0,0,"gold_room::OnKill" - script gold_room -1,{ OnKill: if( #gold_point < 8000 ){ #gold_point++; dispbottom "You have "+#gold_point+" gold points."; } else{ dispbottom "Gold Points overload, exchange it now.."; } end; }
  20. ..............{ SkillPoint += 10; },{},{}
  21. probably you didnt really know how it going to work ?? conf/battle/drops.conf#L143 unless you have some sort of custom source mod for it.. Example : 100 ( 1.00% item ) whatever item that drop at 1.00% or below will be announced once it drop by monster... then.. your log config conf/log_athena.conf#L70 you set it to store the log whenever an item with 1.00% or below dropped.. isnt that already fulfilled what you want ??
  22. answer already given to you ~.~
×
×
  • Create New...