Jump to content

Chaos92

Members
  • Posts

    1643
  • Joined

  • Last visited

  • Days Won

    44

Everything posted by Chaos92

  1. u want background music ? u can download in RMS
  2. its automatic if u set to renewal. Dont test damage without weapon. its enchanting deadly poison to weapons
  3. Is that I can setting for WoE and PVP = renewal but MVP/Hunting = Pre Renewal ? Nowadays players want hunting easy ~ and pre renewal setting will cause imbalance for 3rd job (RK with too high HP with Tao Gunka will dominate) And Renewal Items have much magic def so warlock is a bit high make that make the damage so low ~
  4. oic thanks man, i will try btw its not the way i solve it. that sprite already there in my grf files BUT i removed it and it works. just as what happen as Amatsu Crash, i remove the npc sprite and it works. i dont know why >.<
  5. i didnt delete but after reloaditemdb , i create 1 more same item and use it, still error
  6. Im using the same server, client and same folder (dual client), u can see i on 2 character at the same time but my Admin ID got error and my other character can equip that item. Why is it happen? Anyone can explain to me why is this happen? Im using same client, same grf files, online at the same time
  7. need a guild and up approval skill
  8. then what details in your core.c I haven't edited anything in my core.c. I just couldn't find the line that the solution states. I'm using the correct client for my server, and I've edited the packet_db.txt and all the necessary documents needed. I can log in fine, but the client is fully stuck, and the 2nd line on the chat is Cannot Determine SVN/GIT. show us your core.c
  9. then what details in your core.c
  10. I don't have that specific line in my core. C what svn
  11. details ? i didnt understand what does not in your core.c
  12. Just asking is that this skills is working ? since ive tried attack poring in range (since the skills said work for range attack) but the damage is same when i use the skills and not using the skills. any links for help this issue ?
  13. i already conquered all the castle .. but still can be taken by others . when i open example, castle pront, the other castle emperium also spawn.. btw i already take all castle before that..
  14. this script asking for what castle that need to be open but its open all of castle emperium, when agitend, emperium is still there and they can break the emperium Anyone can fix this script ? original from rathena svn https://github.com/rathena/rathena/blob/master/npc/custom/woe_controller.txt
  15. display version : yes to display svn. but sometimes it will become unknown u run map server, and find that revision, then u can edit in src/common/core.c: snprintf(eA_svn_version, sizeof(eA_svn_version), "Unknown"); Change unknown to the version u know
  16. when u start the server in putty, it will shown http://oi40.tinypic.com/ao19v8.jpg example
  17. http://rathena.org/board/topic/82726-2013-ragexe-and-diff-up-to-date-2013-08-07/ use this
  18. Anyone can share any npc scripts that can easily use safe refine ticket for example : http://ratemyserver.net/index.php?iname=refine&page=item_db&quick=1&isearch=Search +11 Armor Refine Ticket Item ID# 6239 (Guarantee_Armor_11Up) means that safe refine +11 (if they already +4 their armor, still its going to +11, not +15) I need script that can use all types of safe refine ticket if can, did it exist for now ? Mind to share ? up maybe?
  19. I need some modification of this script so that vendors excluded - script itemall -1,{ OnWhisperGlobal: if( getgroupid() >= 99 ){ // check map if( @whispervar0$ == "all" ) set .@type$,""; else if( @whispervar0$ == "map" ) set .@type$,strcharinfo(3); else { dispbottom "Error, pick 'map' or 'all' "; end; } // check item set .@itemid,atoi( @whispervar1$ ); set .@amount,atoi( @whispervar2$ ); if( getitemname( .@itemid ) == "null" || .@amount < 1 ){ dispbottom "Enter valid item id and amount."; } set .@self_id,getcharid(3); query_sql( "SELECT COUNT(`account_id`) FROM `char` WHERE `online` = 1 ", .@total ); while( .@count < .@total ){ query_sql( "SELECT `account_id`,`name` FROM `char` WHERE `online` = 1 ORDER BY `account_id` LIMIT 128 OFFSET "+.@offset, .@aid,.@name$ ); set .@i,0; set .@size,getarraysize( .@aid ); while( .@i < .@size ){ if( .@aid[.@i] != .@self_id ){ if( .@type$ != "" ){ getmapxy( .@map$,.@x,.@y,0,.@name$[.@i] ); if( .@map$ == .@type$ ){ getitem .@itemid,.@amount,.@aid[.@i]; set .@gave,.@gave + 1; } }else{ getitem .@itemid,.@amount,.@aid[.@i]; set .@gave,.@gave + 1; } } set .@count,.@count + 1; set .@i,.@i + 1; } set .@offset,.@offset + .@size; deletearray .@aid,.@size; deletearray .@name$,.@size; } dispbottom "Gave "+.@amount+" x "+getitemname( .@itemid )+" to "+.@gave+" Player(s)."; } end; } Hope someone can help :3
×
×
  • Create New...