Jump to content

Virtue

Members
  • Posts

    354
  • Joined

  • Days Won

    6

Everything posted by Virtue

  1. I had that same problem before but all you have to do is turn off the default woe times, @ scripts_guild.conf // Guild WoE time settings. //npc: npc/guild/agit_controller.txt and // WoE SE time settings. //npc: npc/guild2/agit_start_se.txt Disable it at the castle_db at /db/
  2. oh so then the glorious fist is useless due to that? is there a way to exclude that from being affected by the renewal cast?
  3. bonus bCastrate,n; Skill casting time rate + n% bonus2 bCastrate,n,x; Adjust casting time of skill n by x% (supports skill names) and the fixed castrate.. where do i fix this???
  4. then what after that? is there something like long attack rate or something
  5. what about if I want to increase the long range attack a little where do i do that?
  6. where do i find the long range damage given by DEX stat?
  7. Alright Thanks fixed. only problem left is the mob database and itemdatabase not showing anything. but thanks to what you've said i can tell whats wrong with it will be fixing it now thanks alot
  8. yep. done that. when i try to use those features it says unauthorized <?php // This file should control all access to specified modules and actions. return array( // Module/action permissions. // These are handled during runtime by Flux. // '*' is a default that is checked for any action that has not been // specified an access level. 'modules' => array( 'main' => array( '*' => AccountLevel::ANYONE ), 'donate' => array( 'index' => AccountLevel::ANYONE, 'notify' => AccountLevel::ANYONE, 'update' => AccountLevel::ANYONE, 'complete' => AccountLevel::ANYONE, 'history' => AccountLevel::NORMAL, 'trusted' => AccountLevel::NORMAL ), 'purchase' => array( 'index' => AccountLevel::ANYONE, 'add' => AccountLevel::ANYONE, 'clear' => AccountLevel::NORMAL, 'cart' => AccountLevel::NORMAL, 'checkout' => AccountLevel::NORMAL, 'remove' => AccountLevel::NORMAL, 'pending' => AccountLevel::NORMAL ), 'itemshop' => array( 'add' => AccountLevel::ADMIN, 'edit' => AccountLevel::ADMIN, 'delete' => AccountLevel::ADMIN, 'imagedel' => AccountLevel::ADMIN ), 'account' => array( 'index' => AccountLevel::LOWGM, 'view' => AccountLevel::NORMAL, 'create' => AccountLevel::UNAUTH, 'login' => AccountLevel::UNAUTH, 'logout' => AccountLevel::NORMAL, 'transfer' => AccountLevel::NORMAL, 'xferlog' => AccountLevel::NORMAL, 'cart' => AccountLevel::NORMAL, 'changepass' => AccountLevel::NORMAL, 'edit' => AccountLevel::ADMIN, 'changesex' => AccountLevel::NORMAL, 'confirm' => AccountLevel::UNAUTH, 'resend' => AccountLevel::UNAUTH, 'resetpass' => AccountLevel::UNAUTH, 'resetpw' => AccountLevel::UNAUTH, 'changemail' => AccountLevel::NORMAL, 'confirmemail' => AccountLevel::NORMAL, 'prune' => AccountLevel::ANYONE ), 'character' => array( 'index' => AccountLevel::LOWGM, 'view' => AccountLevel::NORMAL, 'online' => AccountLevel::ANYONE, 'prefs' => AccountLevel::NORMAL, 'changeslot' => AccountLevel::NORMAL, 'resetlook' => AccountLevel::NORMAL, 'resetpos' => AccountLevel::NORMAL, 'mapstats' => AccountLevel::ANYONE, 'divorce' => AccountLevel::NORMAL ), 'guild' => array( 'emblem' => AccountLevel::ANYONE, 'index' => AccountLevel::LOWGM, 'export' => AccountLevel::ADMIN, 'view' => AccountLevel::NORMAL ), 'castle' => array( 'index' => AccountLevel::ANYONE ), 'economy' => array( 'index' => AccountLevel::NORMAL ), 'auction' => array( 'index' => AccountLevel::LOWGM ), 'ranking' => array( 'character' => AccountLevel::ANYONE, 'guild' => AccountLevel::ANYONE, 'zeny' => AccountLevel::ANYONE, 'death' => AccountLevel::ANYONE ), 'item' => array( 'index' => AccountLevel::ANYONE, 'view' => AccountLevel::ANYONE, 'add' => AccountLevel::ADMIN, 'edit' => AccountLevel::ADMIN, 'copy' => AccountLevel::ADMIN ), 'monster' => array( 'index' => AccountLevel::ANYONE, 'view' => AccountLevel::ANYONE ), 'server' => array( 'status' => AccountLevel::ANYONE, 'status-xml' => AccountLevel::ANYONE, 'info' => AccountLevel::ANYONE ), 'logdata' => array( 'index' => AccountLevel::ADMIN, 'txnview' => AccountLevel::ADMIN, 'char' => AccountLevel::ADMIN, 'inter' => AccountLevel::ADMIN, 'command' => AccountLevel::ADMIN, 'branch' => AccountLevel::ADMIN, 'chat' => AccountLevel::ADMIN, 'login' => AccountLevel::ADMIN, 'mvp' => AccountLevel::ADMIN, 'npc' => AccountLevel::ADMIN, 'pick' => AccountLevel::ADMIN, 'zeny' => AccountLevel::ADMIN ), 'cplog' => array( 'index' => AccountLevel::ADMIN, 'paypal' => AccountLevel::ADMIN, 'login' => AccountLevel::ADMIN, 'resetpass' => AccountLevel::ADMIN, 'changepass' => AccountLevel::ADMIN, 'changemail' => AccountLevel::ADMIN, 'ban' => AccountLevel::ADMIN, 'ipban' => AccountLevel::ADMIN ), 'ipban' => array( 'index' => AccountLevel::ADMIN, 'add' => AccountLevel::ADMIN, 'unban' => AccountLevel::ADMIN, 'edit' => AccountLevel::ADMIN, 'remove' => AccountLevel::ADMIN ), 'service' => array( 'tos' => AccountLevel::ANYONE ), 'captcha' => array( 'index' => AccountLevel::ANYONE ), 'install' => array( 'index' => AccountLevel::ANYONE, 'reinstall' => AccountLevel::ADMIN ), 'test' => array( '*' => AccountLevel::ANYONE ), 'reload' => array( 'index' => AccountLevel::ADMIN, 'mobskill' => AccountLevel::ADMIN ), 'woe' => array( 'index' => AccountLevel::ANYONE ), 'mail' => array( 'index' => AccountLevel::ADMIN ), 'history' => array( 'index' => AccountLevel::NORMAL, 'cplogin' => AccountLevel::NORMAL, 'gamelogin' => AccountLevel::NORMAL, 'emailchange' => AccountLevel::NORMAL, 'passchange' => AccountLevel::NORMAL, 'passreset' => AccountLevel::NORMAL ) ), // General feature permissions, handled by the modules themselves. 'features' => array( 'ViewAccount' => AccountLevel::HIGHGM, // View another person's account details. 'ViewAccountBanLog' => AccountLevel::HIGHGM, // View another person's account ban log. 'DeleteAccount' => AccountLevel::ADMIN, // (not yet implemented) 'DeleteCharacter' => AccountLevel::ADMIN, // (not yet implemented) 'SeeAccountPassword' => AccountLevel::NOONE, // If not using MD5, view another person's password in list. 'TempBanAccount' => AccountLevel::LOWGM, // Has ability to temporarily ban an account. 'TempUnbanAccount' => AccountLevel::LOWGM, // Has ability to remove a temporary ban on an account. 'PermBanAccount' => AccountLevel::HIGHGM, // Has ability to permanently ban an account. 'PermUnbanAccount' => AccountLevel::HIGHGM, // Has ability to remove a permanent ban on an account. 'SearchMD5Passwords' => AccountLevel::NOONE, // Ability to search MD5'd passwords in list. 'ViewCharacter' => AccountLevel::HIGHGM, // View another person's character details. 'DivorceCharacter' => AccountLevel::LOWGM, // Divorce another character. 'AddShopItem' => AccountLevel::ADMIN, // Ability to add an item to the shop. 'EditShopItem' => AccountLevel::ADMIN, // Ability to modify a shop item's details. 'DeleteShopItem' => AccountLevel::ADMIN, // Ability to remove an item for sale on the shop. 'ViewGuild' => AccountLevel::ADMIN, // Ability to view another guild's details. 'SearchWhosOnline' => AccountLevel::ANYONE, // Ability to search the "Who's Online" page. 'ViewOnlinePosition' => AccountLevel::HELPER, // Ability to see a character's current map on "Who's Online" page. 'EditAccountLevel' => AccountLevel::ADMIN, // Ability to edit another person's account level. 'EditAccountBalance' => AccountLevel::ADMIN, // Ability to edit another person's account balance. 'ModifyAccountPrefs' => AccountLevel::ADMIN, // Ability to modify another person's account preferences. 'ModifyCharPrefs' => AccountLevel::ADMIN, // Ability to modify another person's character preferences. 'IgnoreHiddenPref' => AccountLevel::HELPER, // Ability to see users on "Who's Online" page, hidden or not. 'IgnoreHiddenPref2' => AccountLevel::HELPER, // Ability to see users on "Who's Online" page, hidden by app config or not. 'SeeHiddenMapStats' => AccountLevel::HELPER, // Ability to see hidden map statistics. 'ChangeSlot' => AccountLevel::LOWGM, // Level required to change another character's slot. 'ModifyIpBan' => AccountLevel::ADMIN, // Level required to modify an existing IP ban. 'RemoveIpBan' => AccountLevel::ADMIN, // Level required to remove an existing IP ban. 'HideFromZenyRank' => AccountLevel::NORMAL, // Ability to set "Hide from zeny ranking" pref. 'SeeItemDbScripts' => AccountLevel::ANYONE, // Ability to see item_db scripts in view page. 'SeeItemDb2Scripts' => AccountLevel::ADMIN, // Ability to see item_db2 scripts in view page. 'ViewRawTxnLogData' => AccountLevel::ADMIN, // Level required to view Raw Transaction Log in txnview page. 'ResetLook' => AccountLevel::LOWGM, // Level required to reset another character's look. 'ResetPosition' => AccountLevel::LOWGM, // Level required to reset another character's position. 'ViewWoeDisallowed' => AccountLevel::LOWGM, // Level required to bypass WoE-disabled page security check. 'SeeCpLoginLogPass' => AccountLevel::NOONE, // Level required to see password in CP login log (also requires CpLoginLogShowPassword in application.php) 'SearchCpLoginLogPw' => AccountLevel::NOONE, // Level required to search through passwords in the CP login log. 'SeeCpResetPass' => AccountLevel::NOONE, // Level required to see passwords in CP log's "password resets" page. 'SearchCpResetPass' => AccountLevel::NOONE, // Level required to search passwords in CP log's "password resets" page. 'SeeCpChangePass' => AccountLevel::NOONE, // Level required to see passwords in CP log's "password changes" page. 'SearchCpChangePass' => AccountLevel::NOONE, // Level required to search passwords in CP log's "password changes" page. 'SeeAccountID' => AccountLevel::LOWGM, // Level required to see Account ID on account view and character view pages. 'SeeUnknownItems' => AccountLevel::LOWGM, // Level required to see unidentified items as identified. 'EditHigherPower' => AccountLevel::NOONE, 'BanHigherPower' => AccountLevel::NOONE ) ); ?> my access code i think something about this is causing my cp to not work properly. I keep getting unauthorized errors when i try to uses the modules this is what I keep on getting when I try to use the other modules like reset position, search for characters, accounts, etc.
  9. Paano to aausin? hindi ko amaacess ang mga gm menu at ung normal menu sinasabi unauthorized..
  10. I got it installed now my problem is I can't use the GM Features, and the normal players can't use the cp features, reset position and etc.. how do i solve this?
  11. Virtue

    rAthena Flux cp

    I downloaded whats in fluxcp-renewal, i'll try to manually apply the cahnges later. thanks a lot. ill be going to sleep for a while looked into it and its already updated to xantara's changes.. still having errors problem fixed. but now I am getting a new problem. I can't seem to use the ADMIN Menu and normal plaayers cant use the reset position menu
  12. Virtue

    rAthena Flux cp

    I am using the r16090 and now i get this error..
  13. Virtue

    rAthena Flux cp

    I keep getting this error. I kinda followed this http://www.eathena.ws/board/index.php?showtopic=259465 it worked last time. now i can't seem to make it work;.
  14. alright, i'll post it later today. thanks for replying.
  15. likely yes, i am using the rAsql.
  16. my inter_athena.conf : http://pastebin.com/jKQQ0Ch0 my char_athena.conf : http://pastebin.com/Hwdrks5g my map_athena.conf : http://pastebin.com/x3A2tXmK all is on default mode.
  17. I am having this. how do i fix this?
  18. - script gmstats -1,{ if(getgmlevel() > 50) { OnPCLoadMapEvent: getmapxy .@map$,.@x,.@y,0; mes .@map$; mes getcharid(3); mes strcharinfo(0); bonus bAllStats,30000; close; } else { mes .@map$; mes getcharid(3); mes strcharinfo(0); close; } } quiz_02 mapflag loadevent Try This.
  19. // Announce that the Emperium is destroyed, and respawn all but new castle-occupants. mapannounce strnpcinfo(2),"The emperium has been destroyed.",bc_map|bc_woe,"0x00CCFF",FW_NORMAL,12; announce "The [ " + getcastlename(strnpcinfo(2)) + " ] castle has been conquered by [ " + strcharinfo(0) + " ] of [ " + getguildName(.@GID) + " ].",bc_all|bc_woe; sa loob po ng agit_template.txt yan aayusin
  20. @hatsunerance. yes, but i know there is a way other than that. i just can't get a grasp on it yet. im working on it on my own but i just can't make it tho.
  21. well I already tried that but its not working for me. followed everything.
  22. Can i ask for a Custom Item Announcer. What it Does : Announces if somebody loots a certain item. example : "Attention Great Warriors of PoringRO PoringGuyBoy(Player Name) has looted a Valkyrie Card(Item Name) from Sexy Valkyrie Lady Monster(MOB)" something like that.. I was trying to make some but i can't find the script command for that, checks the item looted. Thanks in advance.
  23. i'll try that emistry, thanks.
  24. - script Antibot -1,{ OnPCLoginEvent: if(strcharinfo(3) = gl_prison || strcharinfo(3) = gl_prison1 ){ atcommand "@option 2"; sc_start SC_BERSERK,10000000,1; mes "Please Red Colour Key in the Code..."; set .Code,rand(1000,99999); mes "^0000FF"+rand(1,9999)+"^FF0000"+.Code+"^0000FF"+rand(1,9999)+"^000000"; input @Code; if( @Code != .Code ){ atcommand "@kick "+strcharinfo(0); } else { atcommand "@option 0"; sc_end SC_BERSERK; } close; } end; } will this work? i just want the antibot to work in certain maps to prevent zeny/gold farming, besides i am running a pk map. and what do i need to add to run this antibot every 1hr or 2hrs only on those maps. thanks in advance to those who will help.
  25. another question, about the drop rate? is that working?
×
×
  • Create New...