-
Posts
63 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Everything posted by Heartbreak
-
please post an example.. i tried reading this --> http://rathena.org/wiki/Basic_Scripting#Conditions.2C_Variables.2C_and_Set but i don't understand what it means.. or which part should i edit.. =/ should it be like HuntDelay = #gettimetick(2)+86400; //Once a day only. and if(#gettimetick(2) < HuntStart) { sorry for being noob =/
-
//======Name================================ ======== // Daily Monster Hunt //======Version=============================== ====== // 1.2 //======Author(s) =================================== // Sandbox //======Comments============================= ======= // This NPC allows your player to hunt a random amount // of a random monster, within a random time // *randomception!* // If the player successfully hunts the monster // within the time limit, he'll receive a reward! //======Credits=============================== ====== // KeyWorld, nanakiwurtz, NeoMind, Kido // Thanks for helping me out guize! //========================================= ========= ra_temple,155,147,3 script Hunting Challenge 78,{ mes .Npc_Name$; if(Hunter) { mes "You have killed ^880000"+HuntCount +"^000000/^0000FF"+Amt +"^000000 "+getmonsterinfo(Hunt,0)+"s, keep it up!"; close; } if(gettimetick(2) < HuntDelay) { mes "You can only do this quest once a day!"; close; } mes "Hello, do you want to take on the Monster Hunting Challenge?","I will give you a random time limit to kill a random amount of a monster, If you manage to kill them within the given time, you'll receive a TCG!"; if(select("Bring it on!:How about no?")==2) { mes .Npc_Name$; mes "Fine!"; close; } next; mes .Npc_Name$; Hunt = .Mob_List[rand(getarraysize(.Mob_List))]; Time = rand(6000); //Timer Amt = rand (1,3); //Amount of mob to hunt Hunter++; mes "You have to hunt ^0000FF"+Amt+" "+getmonsterinfo (Hunt,0)+"^000000 in ^AA0000"+Time+"^000000 seconds!"; next; mes .Npc_Name$; mes "Go go go!"; close2; showdigit Time,3; HuntDelay = gettimetick(2)+86400; //Once a day only. HuntStart = gettimetick(2)+Time; sleep2 1000*Time; if(Hunter) dispbottom strnpcinfo(1)+": I'm sorry, you didn't make it!"; HuntStart = 0; //Reset all variables Hunt = 0; Hunter = 0; HuntCount = 0; Time = 0; Amt = 0; end; //----------Config---------- OnInit: .Npc_Name$ = "[^0000FF NPC ^000000]"; setarray .Mob_List [0],1511,1630,1039,2068,1272,1719,1046,1389,1112,1115,1871,1252, 1086,1832,1492,1734,1251,1779,1980,1688,1373,1147,1059,1150,108 7,1190,1038,1157,1159,1623,1583,1708,1312,1751,1685; //Mobs to hunt. Default: Poring, Fabre, Lunatic .Reward = 7227; //Reward ID .RewAmt = 1; //Reward Amount end; OnNPCKillEvent: if(Hunter > 0) { if(gettimetick(2) < HuntStart) { if(killedrid == Hunt) { HuntCount++; dispbottom "You have killed "+HuntCount+"/"+Amt+" "+getmonsterinfo(Hunt,0)+"s, keep it up!"; if(HuntCount >= Amt) { dispbottom strnpcinfo (1)+": Congratulations! You did it!"; getitem .Reward,.RewAmt; HuntStart = 0; Hunt = 0; Hunter = 0; HuntCount = 0; Time = 0; Amt = 0; showdigit 1,3; } } } } end; }
-
we reinstalled src in my server.. now vending is disabled on all maps.. and mob spawn went back to how it was before.. even if it's already changed in db.. i dont know how to enable it.. =/ tried mapflag = no go i checked all the settings i could.. but still no go.. does it have something to do with my src folder ? i'm scared to do trial and error on it.. i might mess things up again.. =/ please help me T_T
-
Can You Help Me To Make a Costume Item Not Custom Item
Heartbreak replied to Rain's question in Database Requests
which one is the sprite name ? i have like 3 .spr file for one hg =/ -
both =/ is there any other file in src that might be affecting it ? cuz i tried copying my pre-re/item_db.txt contents to re/item_db2.txt and the changes i made is not working.. =/ it seems like it's not based on the folders fixed: i figured it out.. xD it seems like this is what's causing the problem.. //Use SQL item_db, mob_db and mob_skill_db for the map server use_sql_db: yes
-
no.. i mean.. usually for asura.. the character slides from one sell to another.. but for this one, it's as if it's teleporting to the other side.. =/
-
download this the paste it to your RO folder.. this should do the trick.. https://www.mediafire.com/?zdqoy8bfo49beo9
-
i tried.. but nothing happen.. still the same problem..
-
yes.. there's my renewal.h on top.. i commented all renewal and uncomment prere.. also tried the other recommendations on those post.. but stil lthe same problem.. :'(
-
how can i disable renewal.. i tried following these previous posts.. but it's still reading my re folder.. http://rathena.org/board/topic/95258-disable-renewal/?hl=renewal http://rathena.org/board/topic/95028-renewal-changed-to-pre-renewal/?hl=renewal http://rathena.org/board/topic/94757-instant-cast-not-working/?p=254224 here's my renewal.h // Copyright (c) rAthena Dev Teams - Licensed under GNU GPL // For more information, see LICENCE in the main folder //#ifndef _CONFIG_RENEWAL_H_ //#define _CONFIG_RENEWAL_H_ //quick option to disable all renewal option, used by ./configure #define PRERE #ifndef PRERE /** * rAthena configuration file (http://rathena.org) * For detailed guidance on these check http://rathena.org/wiki/SRC/config/ **/ /** * @INFO: This file holds general-purpose renewal settings, for class-specific ones check /src/config/classes folder **/ /// game renewal server mode /// (disable by commenting the line) /// /// leave this line to enable renewal specific support such as renewal formulas //#define RENEWAL /// renewal cast time /// (disable by commenting the line) /// /// leave this line to enable renewal casting time algorithms /// cast time is decreased by DEX * 2 + INT while 20% of the cast time is not reduced by stats. /// example: /// on a skill whos cast time is 10s, only 8s may be reduced. the other 2s are part of a /// "fixed cast time" which can only be reduced by specialist items and skills //#define RENEWAL_CAST /// renewal drop rate algorithms /// (disable by commenting the line) /// /// leave this line to enable renewal item drop rate algorithms /// while enabled a special modified based on the difference between the player and monster level is applied /// based on the http://irowiki.org/wiki/Drop_System#Level_Factor table //#define RENEWAL_DROP /// renewal exp rate algorithms /// (disable by commenting the line) /// /// leave this line to enable renewal item exp rate algorithms /// while enabled a special modified based on the difference between the player and monster level is applied //#define RENEWAL_EXP /// renewal level modifier on damage /// (disable by commenting the line) /// // leave this line to enable renewal base level modifier on skill damage (selected skills only) //#define RENEWAL_LVDMG /// renewal ASPD [malufett] /// (disable by commenting the line) /// /// leave this line to enable renewal ASPD /// - shield penalty is applied /// - AGI has a greater factor in ASPD increase /// - there is a change in how skills/items give ASPD /// - some skill/item ASPD bonuses won't stack //#define RENEWAL_ASPD /// renewal stat calculations /// (disable by commenting the line) /// /// leave this line to enable renewal calculation for increasing status/parameter points //#define RENEWAL_STAT #endif //#endif // _CONFIG_RENEWAL_H_ please help =/
-
fixed :3
-
fixed.. re-made the server.. ;
-
fixed ! thanks a lot ! :3
-
how to fix this ? sorry for being a newbie :< i already tried these suggestions but i can't seem to make it work.. http://rathena.org/board/topic/59088-help-access-denied-for-user-ragnaroklocalhost/ i don't know which IP/login goes to where.. please help T_T my server is down for 3 days now..
-
sorry.. i thought u mean just re-installing the folders.. im still trying to learn everything.. as u can see i've been working for almost 24 hours to fix this thing.. =/ problem is.. the only access i have is with filezilla and putty.. so i'm trying my best to fix this with the only resources i have.. please help me.. it says im missing a table.. would it be possible to re-install that table using putty ? i can't access phpmyadmin, neither mysql.. =/ tried searching for commands but i can't seem to find anything from google that works for my problem =/
-
tried that one.. now i get this error =/ i tried to search google for this file -> 3rdparty/libconfig/obj/libconfig.a: but im not getting any result.. please help now i have this error.. please help me.. i've been working on this one for almost 9 hours now.. and i feel like i'm just making things worst.. T_T
-
i tried using skill.c from git.. and here's what i got.. =/
-
how can i fix this ? it seems that the character is teleporting.. =/ http://youtu.be/yNpj0p764Vo all I wanted was a no-delay asura.. so i edited skill_cast_db.txt here's my current setting: //-- CH_SOULCOLLECT 401,2000,0,0,600000,0,0 //-- MO_EXPLOSIONSPIRITS 270,0,0,0,180000,0,0 //-- MO_EXTREMITYFIST 271,4000:3500:3000:2500:2000,3000:2500:2000:1500:1000,0,0,300000,0
-
I was having problem fixing my asura = as if char is teleporting (thought i might have changed something in my skill.c) so i decided to copy and paste a fresh copy of skill.c from here -> http://svn.rathena.org/svn/rathena/trunk/src/map/ which I believe same revision i have (cuz i've been doing this for a long time) = Revision 17704 but then after that i got these errors and I can't seem to fix it anymore.. please help me I badly need help.. urgent.. i cant start my server T_T
-
[Warning]: pc_bonus: unknown type 0 0 !
Heartbreak replied to Heartbreak's question in Database Support
thanks a lot -
[Warning]: pc_bonus: unknown type 0 0 !
Heartbreak replied to Heartbreak's question in Database Support
is it in src ? -
please help.. how to fix this ? =/
-
where can i add this ? ex. <mapname> <tab> mapflag <tab>novending prontera mapflag novending
-
nvm.. figured.. XD mine's a longer version XDDDDDD // -------------------------------------------------- // AblazeRO Market/Casino warper // -------------------------------------------------- ra_temple,120,179,4 script Casino Entrance 939,{ if (countitem(7338) < 1) goto noTicket; mes "Do you have a ticket ?"; next; switch(select("Ofcourse !","Huh ?")) { case 1: goto yesTicket; close; case 2: goto noTicket; close; noTicket: mes "[Casino Guard]"; mes "Sorry, no ticket no entry! "; close; yesTicket: mes "Goodluck !"; delitem 7338,1; warp "ra_temin",170,20; close; } }