-
Posts
50 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by tiradauno
-
Mga tol patulong naman dito oh. Thanks.
tiradauno replied to keiostheory's topic in Tulong para sa Client
http://www.mediafire.com/?b8dimomz395g8dk try this -
prontera,157,181,4 script Exchanger 2 2035,{ mes "Please input the amount of TCG you wish to change into Zeny"; mes "Each TCG = 100,000 zeny"; mes "Currently , you have "+countitem(7227)+" TCG."; input @amount,0,countitem(7227); if ( @amount < 1){ mes "You have choose to end the deal."; close; } delitem 7227,@amount; set Zeny,Zeny+(@amount*100000); mes "You have changed "+@amount+" TCG into Zeny."; close; } PA HELP PO AKO DITO GUS2 KO PO SANANG ZENY = TCG CNO PO PWEDI MAG CHANGE O MAG EDIT NITO? THANKS
-
prontera,157,181,4 script Exchanger 2 2035,{ mes "Please input the amount of TCG you wish to change into Zeny"; mes "Each TCG = 100,000 zeny"; mes "Currently , you have "+countitem(7227)+" TCG."; input @amount,0,countitem(7227); if ( @amount < 1){ mes "You have choose to end the deal."; close; } delitem 7227,@amount; set Zeny,Zeny+(@amount*100000); mes "You have changed "+@amount+" TCG into Zeny."; close; } TCG = ZENY I WANT ZENY = TCG ANYONE CAN HELP ME?
-
its ok now . i delete my work and do it again . its ok now thanks
-
i use rathena revision 16130
-
salamat po mga sir solve n po 2 sorry late weps
-
how to fix this error ? help please
-
pag pumapasok po sa lumalabas yan error po
-
thanks
-
pa help po ako . sino po pwedi mg bigay ng idea or guide sa pag gawa ng website ng ragnarok at pag coconect connect? thanks po .
-
thanks arnie and shadowz
-
ah ok na po sir fix na po
-
/* Player groups configuration file --------------------------------- This file defines "player groups" and their privileges. Each group has its id and name, lists of available commands and other permissions, and a list of other groups it inherits from. Group settings -------------- <id> Unique group number. The only required field. <name> Any string. If empty, defaults to "Group <id>". It is used in several @who commands. <level> Equivalent of GM level, which was used in revisions before r15572. You can set it to any number, but usually it's between 0 (default) and 99. Members of groups with lower level can not perform some actions/commands (like @kick) on members of groups with higher level. It is what script command getgmlevel() returns. Group level can also be used to override trade restrictions (db/item_trade.txt). <commands> A group of settings <command name> : <bool> or <commandname> : [ <bool>, <bool> ] First boolean value is for atcommand, second one for charcommand. If set to true, group can use command. If only atcommand value is provided, false is assumed for charcommand. If a command name is not included, false is assumed for both atcommand and charcommand. For a full list of available commands, see: doc/atcommands.txt. Command names must not be aliases. <log_commands> Boolean value. If true then all commands used by the group will be logged to atcommandlog. If setting is omitted in a group definition, false is assumed. Requires 'log_commands' to be enabled in 'conf/log_athena.conf'. <permissions> A group of settings <permission> : <bool> If a permission is not included, false is assumed. For a full list of available permissions, see: doc/permissions.txt <inherit> A list of group names that given group will inherit commands and permissions from. Group names are case-sensitive. Inheritance results ------------------- Both multiple inheritance (Group 2 -> Group 1 and Group 3 -> Group 1) and recursive inheritance (Group 3 -> Group 2 -> Group 1) are allowed. Inheritance rules should not create cycles (eg Group 1 inherits from Group 2, and Group inherits from Group 1 at the same time). Configuration with cycles is considered faulty and can't be processed fully by server. Command or permission is inherited ONLY if it's not already defined for the group. If group inherits from multiple groups, and the same command or permission is defined for more than one of these groups, it's undefined which one will be inherited. Syntax ------ This config file uses libconfig syntax: http://www.hyperrealm.com/libconfig/libconfig_manual.html#Configuration-Files Upgrading from revisions before r15572 ------------------------------------- http://rathena.org/board/index.php?showtopic=58877 */ groups: ( { id: 0 /* group 0 is the default group for every new account */ name: "Player" level: 0 inherit: ( /*empty list*/ ) commands: {go: [true, false] /* no commands by default */ } permissions: { /* without this basic permissions regular players could not trade or party */ can_trade: true can_party: true } }, { id: 1 name: "Super Player" inherit: ( "Player" ) /* can do everything Players can and more */ level: 0 commands: { /* informational commands */ commands: true charcommands: true help: true rates: true uptime: true showdelay: true exp: true mobinfo: true iteminfo: true whodrops: true time: true jailtime: true hominfo: true homstats: true showexp: true showzeny: true whereis: true /* feature commands */ refresh: true noask: true noks: true main: true autoloot: true alootid: true autotrade: true request: true go: true } permissions: { } }, { id: 2 name: "Support" inherit: ( "Super Player" ) level: 1 commands: { version: true where: true jumpto: true who: true who2: true who3: true whomap: true whomap2: true whomap3: true users: true broadcast: true localbroadcast: true } log_commands: true permissions: { receive_requests: true view_equipment: true } }, { id: 3 name: "Script Manager" inherit: ( "Support" ) level: 1 commands: { tonpc: true hidenpc: true shownpc: true loadnpc: true unloadnpc: true npcmove: true addwarp: true } log_commands: true permissions: { any_warp: true } }, { id: 4 name: "Event Manager" inherit: ( "Support" ) level: 1 commands: { monster: true monstersmall: true monsterbig: true killmonster2: true cleanmap: true item: [true, true] zeny: [true, true] disguise: [true, true] undisguise: [true, true] size: [true, true] raise: true raisemap: true day: true night: true skillon: true skilloff: true pvpon: true pvpoff: true gvgon: true gvgoff: true allowks: true me: true marry: true divorce: true } log_commands: true permissions: { can_trade: false any_warp: true } }, { id: 10 name: "Law Enforcement" inherit: ( "Support" ) level: 2 commands: { hide: true follow: true kick: true disguise: true fakename: true option: true speed: true warp: true kill: true recall: true ban: true block: true jail: true jailfor: true mute: true storagelist: true cartlist: true itemlist: true stats: true } log_commands: true permissions: { join_chat: true kick_chat: true hide_session: true who_display_aid: true hack_info: true any_warp: true view_hpmeter: true } }, { id: 99 name: "Admin" level: 99 inherit: ( "Support", "Law Enforcement" ) commands: { /* not necessary due all_commands: true */ } log_commands: true permissions: { can_trade: true can_party: true all_skill: false all_equipment: false skill_unconditional: false use_check: true use_changemaptype: true all_commands: true } } ) tama po ba sir?
-
patulong nman po mga sir kong my alam kau kong ano tlga pinaka problema kapag normal player walang @go command hindi lumalabas na unknown normal chat lng sya . pero nung una kong rathena meron xa . nacra kac kaya delete ko pero ngaun . lahat ng gingawa ko walang @command pa tulong please
-
[2011-03-15aRagexeRE] Headgears, Sprite, Data Folder, LUA and 3rd Jobs
tiradauno replied to Robotculator's question in Client-side Support
same problem -
Revision 16114 yan po gamit ko . nung una po ok nman xa pag nkakapatay ako natutumba xa pero nung iedit ko ung cast dun n nag cmula
-
pa help po ako . pag pinatay ko ibang player or clone hindi xa natutumba ang nanyayari po nakatayo lng xa at nawawala
-
i have a problem in casting i already edit the cast rate in 0 and the castrate_dex_scale: 150 . but have a cast time . how to fix this?
-
pa help po sa cast / my cast pa po xa //-------------------------------------------------------------- // rAthena Battle Configuration File // Originally Translated by Peter Kieser <[email protected]> // Made in to plainer English by Ancyker //-------------------------------------------------------------- // Note 1: Value is a config switch (on/off, yes/no or 1/0) // Note 2: Value is in percents (100 means 100%) // Note 3: Value is a bit field. If no description is given, // assume unit types (1: Pc, 2: Mob, 4: Pet, 8: Homun, 16: Mercenary) //-------------------------------------------------------------- // The rate of time it takes to cast a spell (Note 2, 0 = No casting time) casting_rate: 0 // Delay time after casting (Note 2) delay_rate: 100 // Does the delay time depend on the caster's DEX and/or AGI? (Note 1) // Note: On Official servers, neither Dex nor Agi affect delay time delay_dependon_dex: no delay_dependon_agi: no // Minimum allowed delay for ANY skills after casting (in miliseconds) (Note 1) // Note: Setting this to anything above 0 can stop speedhacks. min_skill_delay_limit: 100 // This delay is the min 'can't walk delay' of all skills. // NOTE: Do not set this too low, if a character starts moving too soon after // doing a skill, the client will not update this, and the player/mob will // appear to "teleport" afterwards. default_walk_delay: 300 //Completely disable skill delay of the following types (Note 3) //NOTE: By default mobs don't have the skill delay as specified in the skill // database, but follow their own 'reuse' skill delay which is specified on // the mob skill db. When set, the delay for all skills become // min_skill_delay_limit. no_skill_delay: 2 // At what dex does the cast time become zero (instacast)? castrate_dex_scale: 150 // What level of leniency should the skill system give for skills when // accounting attack motion (ASPD) for casting skills (Note 2, between 0 and 100) // // NOTE: Setting this to 100% may cause some issues with valid skills not being cast. // The time difference between client and server varies so allowing 90% leniency // should be enough to forgive very small margins of error. skill_amotion_leniency: 90 // Will normal attacks be able to ignore the delay after skills? (Note 1) skill_delay_attack_enable: yes // Range added to skills after their cast time finishes. // Decides how far away the target can walk away after the skill began casting before the skill fails. // 0 disables this range checking (default) skill_add_range: 0 // If the target moves out of range while casting, do we take the items and SP for the skill anyway? (Note 1) skill_out_range_consume: no // Does the distance between caster and target define if the skill is a ranged skill? (Note 3) // If set, when the distance between caster and target is greater than 3 the skill is considered long-range, otherwise it's a melee range. // If not set, then the range is determined by the skill's range (if it is above 5, the skill is ranged). // Default 14 (mobs + pets + homun) skillrange_by_distance: 14 // Should the equipped weapon's range override the skill's range defined in the skill_db for most weapon-based skills? (Note 3) // NOTE: Skills affected by this option are those whose range in the skill_db are negative. Note that unless monster_ai&0x400 is // set, the range of all skills is 9 for monsters. skillrange_from_weapon: 30 // Should a check on the caster's status be performed in all skill attacks? // When set to yes, meteors, storm gust and any other ground skills will have // no effect while the caster is unable to fight (eg: stunned). skill_caster_check: yes // Should ground placed skills be removed as soon as the caster dies? (Note 3) clear_skills_on_death: 0 // Should ground placed skills be removed when the caster changes maps? (Note 3) clear_skills_on_warp: 15 //Setting this to YES will override the target mode of ground-based skills with the flag 0x01 to "No Enemies" //The two skills affected by default are Pneuma and Safety Wall (if set to yes, those two skills will not protect everyone, but only allies) //See db/skill_unit_db.txt for more info. defunit_not_enemy: no // Do skills do at least 'hits' damage when they don't miss/are blocked? //(for example, will firebolts always do "number of bolts" damage versus plants?) //Values (add as appropiate): 1 for weapon-based attacks, 2 for magic attacks, 4 for misc attacks. skill_min_damage: 6 // The delay rate of monk's combo (Note 2) combo_delay_rate: 100 // Use alternate auto Counter Attack Skill Type? (Note 3) // For those characters on which it is set, 100% Critical, // Otherwise it disregard DEF and HIT+20, CRI*2 auto_counter_type: 15 // Can ground skills be placed on top of each other? (Note 3) // By default, skills with UF_NOREITERATION set cannot be stacked on top of // other skills, this setting will override that. (skill_unit_db) skill_reiteration: 0 // Can ground skills NOT be placed underneath/near players/monsters? (Note 3) // If set, only skills with UF_NOFOOTSET set will be affected (skill_unit_db) skill_nofootset: 1 // Should traps (hunter traps + quagmire) change their target to "all" inside gvg/pvp grounds? (Note 3) // Default on official servers: yes for player-traps gvg_traps_target_all: 1 // Some traps settings (add as necessary): // 1: Traps are invisible to those who come into view of it. When unset, all traps are visible at all times. // (Invisible traps can be revealed through Hunter's Detecting skill) traps_setting: 0 // Restrictions applied to the Alchemist's Summon Flora skill (add as necessary) // 1: Enable players to damage the floras outside of versus grounds. // 2: Disable having different types out at the same time // (eg: forbid summoning anything except hydras when there's already // one hydra out) summon_flora_setting: 3 // Whether placed down skills will check walls (Note 1) // (Makes it so that Storm Gust/Lord of Vermillion/etc when casted next to a wall, won't hit on the other side) skill_wall_check: yes // When cloaking, Whether the wall is checked or not. (Note 1) // Note: When the skill does not checks for walls, you will always be considered // as if you had a wall-next to you (you always get the wall-based speed). // Add the settings as required, being hit always uncloaks you. // // 0 = doesn't check for walls // 1 = Check for walls // 2 = Cloaking is not cancelled when attacking. // 4 = Cloaking is not cancelled when using skills player_cloak_check_type: 1 monster_cloak_check_type: 4 // Can't place unlimited land skills at the same time (Note 3) land_skill_limit: 1 //Determines which kind of skill-failed messages should be sent: // 1 - Disable all skill-failed messages. // 2 - Disable skill-failed messages due to can-act delays. // 4 - Disable failed message from Snatcher // 8 - Disable failed message from Envenom display_skill_fail: 2 // Can a player in chat room (in-game), be warped by a warp portal? (Note 1) chat_warpportal: no // What should the wizard's "Sense" skill display on the defense fields? // 0: Do not show defense // 1: Base defense // 2: Vit/Int defense // 3: Both (the addition of both) [default] sense_type: 3 // Which finger offensive style will be used? // 0 = Aegis style (single multi-hit attack) // 1 = Athena style (multiple consecutive attacks) finger_offensive_type: 0 // Grandcross Settings (Dont mess with these) // If set to no, hit interval is increased based on the amount of mobs standing on the same cell // (means that when there's stacked mobs in the same cell, they won't receive all hits) gx_allhit: no // Grandcross display type (Default 1) // 0: Yellow character // 1: White character gx_disptype: 1 // Max Level Difference for Devotion devotion_level_difference: 10 // If no than you can use the ensemble skills alone. (Note 1) player_skill_partner_check: yes // Remove trap type // 0 = Aegis system : Returns 1 'Trap' item // 1 = Athena system : Returns all items used to deploy the trap skill_removetrap_type: 0 // Does using bow to do a backstab give a 50% damage penalty? (Note 1) backstab_bow_penalty: yes // How many times you could try to steal from a mob. // Note: It helps to avoid stealing exploit on monsters with few rare items // Use 0 to disable (max allowed value is 255) skill_steal_max_tries: 0 // Can Rogues plagiarize advanced job skills // 0 = no restriction // 1 = only stalker may plagiarize advanced skills // 2 = advanced skills cannot be plagiarized by anyone // Official servers setting: 2 copyskill_restrict: 2 // Does Berserk/Frenzy cancel other self-buffs when used? berserk_cancels_buffs: no // Level and Strength of "MVP heal". When someone casts a heal of this level or // above, the heal formula is bypassed and this value is used instead. max_heal: 9999 max_heal_lv: 11 // Emergency Recall Guild Skill setting (add as appropiate). // Note that for the skill to be usable at all, // you need at least one of 1/2 and 4/8 // 1: Skill is usable outside of woe. // 2: Skill is usable during woe. // 4: Skill is usable outside of GvG grounds // 8: Skill is usable on GvG grounds //16: Disable skill from "nowarpto" maps // (it will work on GVG castles even if they are set to nowarpto, though) emergency_call: 11 // Guild Aura Skills setting (add as appropiate). // (This affects GD_LEADERSHIP, GD_GLORYWOUNDS, GD_SOULCOLD and GD_HAWKEYES) // Note that for the skill to be usable at all, // you need at least one of 1/2 and 4/8 // 1: Skill works outside of woe. // 2: Skill works during woe. // 4: Skill works outside of GvG grounds // 8: Skill works on GvG grounds //16: Disable skill from affecting Guild Master guild_aura: 31 // Max Possible Level of Monster skills // Note: If your MVPs are too tough, reduce it to 10. mob_max_skilllvl: 100 // Allows players to skip menu when casting Teleport level 1 // Menu contains two options. "Random" and "Cancel" skip_teleport_lv1_menu: no // Allow use of SG skills without proper day (Sun/Moon/Star) ? allow_skill_without_day: no // Allow use of ES-type magic on players? allow_es_magic_player: no // Miracle of the Sun, Moon and Stars skill ratio (100% = 10000) sg_miracle_skill_ratio: 2 // Miracle of the Sun, Moon and Stars skill duration in milliseconds sg_miracle_skill_duration: 3600000 // Angel of the Sun, Moon and Stars skill ratio (100% = 10000) sg_angel_skill_ratio: 10 // Skills that bHealPower has effect on // 1: Heal, 2: Sanctuary, 4: Potion Pitcher, 8: Slim Pitcher, 16: Apple of Idun skill_add_heal_rate: 7 // Whether the damage of EarthQuake with a single target on screen is able to be reflected. // Note: On offcial server, EQ is reflectable when there is only one target on the screen, // which might be an exploit to hunt the MVPs. eq_single_target_reflectable: yes // On official server, you will receive damage from Reflection and some Tarot Card even in invincible status. // When this setting is enabled, it allows you to immune to all kinds of damage, including those stated previous. // (The number will show but no actual damage will be done) invincible.nodamage: no
-
thanks sir . problem fix .
-
// = Script made by RIKIMARU on rathena.org // = Profile Link : // = http://rathena.org/board/user/434-rikimaru/ // = ENJOY THIS SCRIPT! //=================================================================================== // //=====// /==/ /==/ /==/ // // // /==/ /==/ /=/ /==/ // //=====// /==/ /=/ /==============/ /========/ /==//===/ /==/ /==/ // //=////// /==/ /==//=/ /==/ /==/==/==/==/==/ / / / /==/ /==/ /==/ // // == /==/ /==//=/ /==/ /==/ /==/ /==/ ======/ / /==/ /==/ /==/ // // == /==/ /==/ /=/ /==/ /==/ /==/ /==/ / /===/ / /==/ /==/ /==/ // // == /==/ /==/ /=/ /==/ /==/ /==/ /==/ / /===/ / /==/ /==/=====/==/ // // == /==/ /==/ /=/ /==/ /==/ /==/ /==/ /========/ /==/ /==///////==/ // ================ rAthena Script ================================================== // ============== Information ======================================================= // = Stat and Skill Seller // = Made by : // = Rikimaru //===== Current Version: =================================================== //= 1.0 //===== Compatible With: =================================================== //= with any rAthena Revision //===== Description: ======================================================= //= This was a Requested Script,but it's useful for Newbie's //===== Additional Comments: =============================================== //= 1.0 Finished the Script [Rikimaru] //========================================================================= //= DO NOT REMOVE MY AND CHRIS CREDITS AND CLAIM OUR WORK AS YOURS //========================================================================= prontera,164,142,5 script Stat and Skill Seller NID,{ // ===================== Settings =========================== set .@skillname$,"^0000FF[ John ]^000000"; set .@zenyCost,100 // ================== End of Settings ======================= mes .@skillname$; mes "Hello ^FF0000["+strcharinfo(0)+"]^000000!"; mes "What do you want to do?"; next; switch(select("-Buy Stats:-Buy Skills:Cancel")) { case 1: mes .@skillname$; mes "Okay input the Amount"; mes "of Points you want to buy!"; mes "1 Point has a cost of 100 Zenny!"; next; mes .@skillname$; input .@amount; if( Zeny < ( .@amount * .@zenyCost ) ) { mes "You don't have enough money!"; close; } else { set Zeny, Zeny - ( .@amount * .@zenyCost ); set StatusPoint, StatusPoint + .@amount; mes "There,take them."; } case 2: mes .@skillname$; mes "Okay input the Amount"; mes "of Points you want to buy!"; mes "1 Point has a cost of 100 Zenny!"; next; mes .@skillname$; input .@amount; if( Zeny < ( .@amount * .@zenyCost ) ) { mes "You don't have enough money!"; close; } else { set Zeny, Zeny - ( .@amount * .@zenyCost ); set SkillPoint, SkillPoint + .@amount; mes "There,take them."; } case 3: close; } }