Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. http://rathena.org/board/topic/60024-error-in-kdr-function/
  2. Emistry

    Bossnia

    if( countitem( 7227 ) < 10 ){ mes "You need 10 TCG"; close; } delitem 7227,10; replace the part for zeny checking and zeny deleting part
  3. i think it has to do with client hex stuff.. because i think this doesnt work in 20120618 client...but it work in 20120410 client.. so try change your client to enable it.
  4. here trunk/conf/log_athena.conf change the settings // Enable Logs? (Note 3) // 0x00000 - Don't log at all // 0x00001 - (T) Log trades // 0x00002 - (V) Log vending transactions // 0x00004 - (P) Log items drop/picked by players // 0x00008 - (L) Log items drop/looted by monsters // 0x00010 - (S) Log NPC transactions (buy/sell) // 0x00020 - (N) Log Script transactions (items deleted/acquired through quests) // 0x00040 - (D) Log items stolen from mobs (Steal/Gank) // 0x00080 - (C) Log player-used items (consumables/pet&hom&merc food/items used for skills&attacks) // 0x00100 - (O) Log produced/ingredient items // 0x00200 - (U) Log MVP prize items // 0x00400 - (A) Log player created/deleted items (through @/# commands) // 0x00800 - (R) Log items placed/retrieved from storage. // 0x01000 - (G) Log items placed/retrieved from guild storage. // 0x02000 - (E) Log mail system transactions. // 0x04000 - (I) Log auction system transactions. // 0x08000 - ( Log buying store transactions // 0x10000 - (X) Log all other transcations (rentals expiring/inserting cards/items removed by item_check/ // rings deleted by divorce/pet egg (un)hatching/pet armor (un)equipping/Weapon Refine skill/Remove Trap skill) // Example: Log trades+vending+script items+created items: 1+2+32+1024 = 1059 // Please note that moving items from inventory to cart and back is not logged by design. enable_logs: 0xFFFFF
  5. trunk/conf/battle/client.conf // Maximum allowed 'level' value that can be sent in unit packets. // Use together with the aura_lv setting to tell when exactly to show the aura. // NOTE: You also need to adjust the client if you want this to work. // NOTE: Default is 99. Values above 127 will probably behave incorrectly. // NOTE: If you don't know what this does, don't change it!!! max_lv: 99 // Level required to display an aura. // NOTE: This assumes that sending max_lv to the client will display the aura. // NOTE: aura_lv must not be less than max_lv. // Example: If max_lv is 99 and aura_lv is 150, characters with level 99~149 // will be sent as being all level 98, and only characters with level // 150 or more will be reported as having level 99 and show an aura. aura_lv: 99 // Units types affected by max_lv and aura_lv settings. (Note 3) // Note: If an unit type, which normally does not show an aura, is // set it will obtain an aura when it meets the level requirement. // Default: 0 (none) client_limit_unit_lv: 0
  6. check your clientside setup ... clientinfo.xml data.ini grf etc
  7. http://subversion.assembla.com/svn/ClientSide/Translation_Project/
  8. try this http://pastebin.com/raw.php?i=T88L3fQk
  9. LOL.... you are showing us trunk/conf/char_athena.conf and not your trunk/conf/groups.conf
  10. /me like the Frozen Lake ^^ it can be step on it right ? xD
  11. LOL at Annie xD back to game.... ANTONIO !!!!!
  12. use weemapcacache to update this file with you custom map data trunk/db/re/map_cache.dat add your custom map file into your grf.. edit these file trunk/conf/maps_athena.conf trunk/db/map_index.txt
  13. not sure is this the correct way.. trunk/src/map/skill.c remove this.. sc_start(bl,SC_COMA,100,skilllv,skill_get_time2(skillid,skilllv));
  14. try this http://pastebin.com/raw.php?i=7VNQfca5 i think player wont use @pk in pvp or gvg...( player cant pk outside pvp or gvg except PK Server ) so i think just check for both this should be enough...
  15. @Annie it should be if ( getmonsterinfo( killedrid, MOB_MVPEXP ) && rand(100) < 40 ) { otherwise this event will be triggered by all monster.. >.<
  16. try this http://pastebin.com/raw.php?i=f0MVHLMc http://pastebin.com/raw.php?i=yw729EYR
  17. trunk/db/re/item_noequip.txt
  18. will think about it if i going to update the script in future.
  19. get error when printscreen ?? are you using custom src_logo?? if yes then remove your custom src_logo or remake a new 1 so that it's compatible with it.
  20. nope..it doesnt support 1 stage 1 boss... and i didnt plan to do it like this...at least not for now.
  21. try this http://pastebin.com/raw.php?i=EB1pA1DV
  22. .@sql = query( "SELECT `id`,`name` FROM `yourtable` ",.@id,.@name$ ); for( .@i = 0; .@i < .@sql; .@i++ ) mes "ID : "+.@id[.@i]+" & Name : "+.@name$[.@i]; refer query_sql
×
×
  • Create New...