Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    409

Everything posted by Emistry

  1. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/re/skill_cast_db.txt
  2. Emistry

    Trade LOGS

    https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/conf/log_athena.conf // 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
  3. just change cell_vending to cell_novending
  4. if cant find then add a new 1.. // Structure of Database: // SkillID,CastingTime,AfterCastActDelay,AfterCastWalkDelay,Duration1,Duration2,Cool Down,Fixed Casting Time
  5. run the script in ur MySQL / Phpmyadmin or etc....
  6. hmm ..are you using the older client ?? then you can try diff it from this site of Brian http://rathena.org/tools/diff_patcher.php and make sure to select this. however,...if you using those new client...it should be no problems...it has been enabled by default
  7. or maybe you can just link it from your site to those site of character simulator site ? if using HTML then you can make use of the <iframe> </iframe>
  8. http://subversion.assembla.com/svn/ClientSide/ http://supportmii.com/ro1/Clients/ choose it yourself...
  9. @Achhandrian show your script !!
  10. http://trac.rathena.org/search?q=16470
  11. not sure..i use the LOG_TYPE_SCRIPT because the skull will be added directly into player inventory.. doesnt feel like the LOG_TYPE_PICKDROP match for this situation ...since player doesnt need to pick it ? so i prefer to use LOG_TYPE_SCRIPT anyway ..just let the @TS to select which way he way haha
  12. try change pc_additem( ssd, &item_tmp, 1); into pc_additem(sd, &item_tmp, 1, LOG_TYPE_SCRIPT))) you need 1 more parameter for log part.
  13. show your script.....we dont know how your script work to start / end..
  14. to remove.. set .faildestroy,1; // Should the card remover have a chance of failure that destroys items? 1 = Yes, 0 = No. to reduce... set .@failchance,rand(100); <------------------------------------------------------ if (.faildestroy==1) { if(.@failchance < 2) { <------------------------------------------------------ next; failedremovecards .@part,0; mes "[Wise Old Woman]"; mes "The process was a total failure. I am afraid the item and the cards were destroyed."; close; } if(.@failchance < 8) { <------------------------------------------------------ if (.@failtype == 1) { next; failedremovecards .@part,1; mes "[Wise Old Woman]"; mes "While I have managed to remove the cards from the item, they were destroyed in the process. The item, however, is okay."; close; } if (.@failtype == 2) { next; failedremovecards .@part,2; mes "[Wise Old Woman]"; mes "Most unfortunate. I succeeded at removing the cards, but the item itself was destroyed in the process."; close; } } } if(.@failchance < 10) { <------------------------------------------------------ next; failedremovecards .@part,3; mes "[Wise Old Woman]"; mes "I have failed to remove the cards. Luckily, however, both the item and the cards are still okay."; close; }
  15. http://rathena.org/wiki/Group_Permissions
  16. anyway..you can do it in a very easy way now without any src mod.... - script Sample -1,{ OnInit: bindatcmd("checkpoints","Sample::OnAtcommand"); end; OnAtcommand: dispbottom "Cash Point : "+#CASHPOINTS+" Points."; dispbottom "Event Point : "+#EVENTPOINTS+" Points."; dispbottom "Vote Point : "+#VOTEPOINTS+" Points."; end; } make sure you are using the latest rAthena.... otherwise you have to diff the bindatcmd command at your own.
  17. the same answer .....refer to what mysterious said.....edit your msgstringtable.txt
  18. still nothing different..work fine at my test server.. the only part that i edit in the script... npctalk "Count for the Targeted Monster's Amount to Win the Game. ["+.MobCount[.@Target]+"]"; so that i could get what is the answer...and then count for the flower again.... and i confirmed it is correct..nothing wrong at all.. and yes..i started it several time using the auto timer..but the result still same..doesnt affected at all nomatter how many time it started automatically.. the answer will be updated everytime it restarted again and again.. either auto or manual still the same...
  19. if you insist to have these map in your seerver...you can just find it and add it back to your server.. add in the mapcache ...map data file..etc.....just like how you add a custom map...
  20. check post#2 .... if you not sure then show you edited script...and specify what you try to archieve,.... beside....rAthena got a better one already... you can try also... https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/mob_item_ratio.txt
  21. http://fluxcp.googlecode.com/svn/branches/fluxcp-1.0/config/application.php. 'ResultsPerPage' => 20, // The number of results to display in a paged set, per page. ... .... .... 'GuildRankingLimit' => 20, //
  22. Emistry

    New @go

    try refer here http://rathena.org/wiki/@go
  23. the only choice you left ... rename these... if you dont know which line to edit...read this.. http://rathena.org/wiki/Favorite_tab#Msgstringtable
  24. hmm ...i cant reproduce your problem in my test server.... in my test server.. the script still working fine ..no problem at all ... O.O how about show me your script. .... let me try in my test server.
  25. alway show ur edited script...linking the original script is useless when you edited something in the script.
×
×
  • Create New...