-
Posts
99 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by Michi
-
did you plan to do other christmas maps?
-
Thanks for explanation You have made a great job no need to modify the map
-
18574,Lord_of_the_Death_Helm,Lord of the Death Helm,5,1000,,1000,,10,,1,0xFFFFFFFF,7,2,768,,0,1,742,{bonus2 bSubRace,RC_NonBoss,-5; bonus2 bAddRace,RC_Boss,10; bonus2 bAddRace,RC_Boss,getrefine()/5; if (isequipped(4140)) {bonus2 bAddRace,RC_Boss,5; if (getrefine() >= 11) { bonus2 bSubRace,RC_NonBoss,5;}}},{},{} But i'm not sure to understand what the item do at +11
-
Question what's the .extra file please?
-
Really big thanks. Nice to share this free =)
-
Thx so much
-
I found that -> http://www.eathena.w...howtopic=248127 battleground script commands for rAthena last revision: Index: map/battleground.c =================================================================== --- map/battleground.c (revision 16819) +++ map/battleground.c (working copy) @@ -23,7 +23,7 @@ #include <stdio.h> static DBMap* bg_team_db; // int bg_id -> struct battleground_data* -static unsigned int bg_team_counter = 0; // Next bg_id +static unsigned int bg_team_counter = 1000; // Next bg_id struct battleground_data* bg_team_search(int bg_id) { // Search a BG Team using bg_id @@ -171,6 +171,22 @@ return bg->bg_id; } +int bg_create2( unsigned short bg_id, unsigned short mapindex, short rx, short ry, const char *ev, const char *dev ) { + struct battleground_data *bg = bg_team_search(bg_id); + if ( bg ) return 0; + CREATE(bg, struct battleground_data, 1); + bg->bg_id = bg_id; + bg->count = 0; + bg->mapindex = mapindex; + bg->x = rx; + bg->y = ry; + safestrncpy(bg->logout_event, ev, sizeof(bg->logout_event)); + safestrncpy(bg->die_event, dev, sizeof(bg->die_event)); + memset(&bg->members, 0, sizeof(bg->members)); + idb_put(bg_team_db, bg_id, bg); + return bg_id; +} + int bg_team_get_id(struct block_list *bl) { nullpo_ret(bl); Index: map/battleground.h =================================================================== --- map/battleground.h (revision 16819) +++ map/battleground.h (working copy) @@ -35,6 +35,7 @@ struct map_session_data* bg_getavailablesd(struct battleground_data *bg); int bg_create(unsigned short mapindex, short rx, short ry, const char *ev, const char *dev); +int bg_create2( unsigned short bg_id, unsigned short mapindex, short rx, short ry, const char *ev, const char *dev ); int bg_team_join(int bg_id, struct map_session_data *sd); int bg_team_delete(int bg_id); int bg_team_leave(struct map_session_data *sd, int flag); Index: map/script.c =================================================================== --- map/script.c (revision 16819) +++ map/script.c (working copy) @@ -16980,7 +16980,79 @@ return 0; } +// createbgid <battleground ID>, <respawn map>, <respawn x>, <respawn y>, <On Quit event>, <On Death event>; +BUILDIN_FUNC(createbgid) { + if ( bg_create2( script_getnum(st,2), mapindex_name2id( script_getstr(st,3) ), script_getnum(st,4), script_getnum(st,5), script_getstr(st,6), script_getstr(st,7) ) > 0 ) + script_pushint( st, script_getnum(st,2) ); + else + script_pushint( st, 0 ); + return 0; +} +// setbgid <battleground ID> {, <player name> }; +BUILDIN_FUNC(setbgid) { + unsigned short bg_id = script_getnum(st,2); + struct battleground_data *bg = bg_team_search(bg_id); + TBL_PC* sd; + if ( bg_id < 0 || bg_id > 1000 ) { + script_pushint( st, -4 ); + return 0; + } + if ( script_hasdata(st,3) ) + sd = map_nick2sd( script_getstr(st,3) ); + else + sd = script_rid2sd(st); + if ( sd == NULL ) { + script_pushint( st, -3 ); + return 0; + } + if ( bg_id > 0 && bg == NULL ) { + script_pushint( st, -1 ); + return 0; + } + if ( sd->bg_id == bg_id && bg_id != 0 ) { + script_pushint( st, -5 ); + return 0; + } + if ( sd->bg_id ) + bg_team_leave(sd,0); + if ( bg_id == 0 ) { + script_pushint( st, 0 ); + return 0; + } + if ( bg_team_join( bg_id, sd ) == 0 ) + script_pushint( st, -2 ); + else + script_pushint( st, bg_id ); + return 0; +} + +// getbgusers <battleground ID>; +BUILDIN_FUNC(getbgusers) { + struct battleground_data *bg = bg_team_search( script_getnum(st,2) ); + unsigned char i; + if ( bg == NULL ) { + script_pushint( st, -1 ); + return 0; + } + for ( i = 0; bg->members[i].sd != NULL; i++ ) + mapreg_setreg( reference_uid( add_str("$@arenamembers"), i ), bg->members[i].sd->bl.id ); + mapreg_setreg( add_str("$@arenamembersnum"), i ); + script_pushint( st, i ); + return 0; +} + +// bg_kickall <battleground ID>; +BUILDIN_FUNC(bg_kickall) { + struct battleground_data *bg = bg_team_search( script_getnum(st,2) ); + unsigned char i; + if ( bg == NULL ) + return 0; + for ( i = 0; bg->members[i].sd != NULL; i++ ) + bg_team_leave( bg->members[i].sd , 0 ); + return 0; +} + // declarations that were supposed to be exported from npc_chat.c #ifdef PCRE_SUPPORT BUILDIN_FUNC(defpattern); @@ -17433,5 +17505,9 @@ BUILDIN_DEF(checkquest, "i?"), BUILDIN_DEF(changequest, "ii"), BUILDIN_DEF(showevent, "ii"), + + BUILDIN_DEF(createbgid,"isiiss"), + BUILDIN_DEF(setbgid,"i?"), + BUILDIN_DEF(getbgusers,"i"), + BUILDIN_DEF(bg_kickall,"i"), {NULL,NULL,NULL}, -};
-
Hi guys is someone have the new kro - accessoryid.lua accname.lua ?
-
@Ziu you are awesome
-
The +10 & +20 food can be stack and clementia give 15int 15dex at lvl job 50 of the ab. With some int dex stuff you can get the 530 easyily
-
You can't be a good admin alone. 1. You can't know everything about the game. There is to many things to know. How many server I test that was really unbalence? The problem is when you try to add things up the rate ect... it's really difficult to keep the balance. Ppl quick are boring when you not add content/correct bugs/balence the things. So for me it's important to have a team to discuss about what can we do to make a balance server with adding stuff. (Player reviews is really important to) 2. The time. You can't make everything by yourself without help. Thats can works the firsts month but when players became borred and want more content it's not that simple to add some. 3. You need to know how to fix skill bug ect... If you take rathena renewal there is so many things missing and so many skill buggy that's impossible to make it run as common server. If you do it there is so many un-balence class that every player playing with the same class. One more thinks if you take the atk and matk formula from rathena renewal it's the same as pre-renewal and you can make really strong dmg with some skills. In pvp is a one hit to kill. You can't tank player. So you need some really good dev skills. 4. Do every things alone mean you need a lot of time and I don't know if we can devoted our life to this. 5. A team is important to do just about anything. Team is here to keep you on the good way. That's my opinion. No attack no offense to the great job that rAthena done this last year, they keep ragnarok private server alive =) I would like to finish by thanks all rAthena dev/scriptor/contributor for they great work and time they give to the community!
-
The only things that I want it's all the new script instance in english... From malaya to now. Hope one day rAthena would do it.
-
@exneval you can't hex this it's a texture file in your grf folder -> data exture\유저인터페이스\login_interface\win_select2.bmp
-
I guys I want to know if anyone have the missing kro hat that are not inclued on rathena. The script in item_db.txt and the lua (accessoryid / itemInfo ) for the client. If someone share it for free or sale it just leave a message here please. Some exemple hat: 10TH_PORING_HAT MASK_OF_FOTIA WHITE_SCHOOL_HAT CARNATION_HAIRBAND STRONGMAN_HAIR WILL_O_WISP MOON_STAR_DECO CHUNG_E_SOUL SUPERSTAR_DECO CHOCOSTICK_MOUTH COLD_BREATH ... Thanks
-
@nanakiwurtz Thx for your great job =) With all you translate I can't find some untranslate things. Maybe you have finish now @Yommy client after 20120410 have some big bug. Like when you cast ground skill and change map you will get a client crash. I hope rathena will make some support on newer client and add the battleground queue system. As Yommy made for CookieRo =)
-
Hmm I will recomend you this http://supportmii.com/ro1/JudasBible.pdf It's a good tutorial for starting =)
-
Found this -> http://cfile4.uf.tistory.com/attach/182289534DE20FAF020A3F http://ro.chanywa.com/ It's a simulator that's looks update and using kro formula for hp/sp and all other stuff like aspd ect...
-
I test the cronus svn and what I can tell is there is a change with Rune Knight, Warlock, Mechanic, Sorcerer & Genetic like the iro patch as said but it's not the same hp in kro I compare cronus to video I found on youtube with all the class and it's look's that chronus have the good table but not for all class they didn't use the new hp table. Maybe we can implement the cronus src and adjust hp for the class who change the formula? If you need I can make a patch do implement the cronus table.
-
We have a problem with HP/SP formula it's not like kro server. There is some infomation here -> http://rathena.org/b...ray-vs-rathena/ and here -> http://rathena.org/b...panded-classes/ But when I have test with chronus or the patch of Daegaladh I got a difference with some class exemple RK and Meca, it's due to the post balance patch in kro, they have adjust some hp/sp for some classe . Hope some ppl have good information and we can update to rAthena quickly =) Maybe those can help https://docs.google.com/document/d/1xt9HPvtjG-S-HqDYc0oMIH3MGOFksVF8LvL1nbM1ZLw/edit?pli=1 http://forums.warpportal.com/index.php?/topic/61876-december-13-skill-balance-update-patch/
-
Judas that was the same as me with bodyrelocation can't spam it, didn't find any fix
-
here you can find a complete tutorial -> http://supportmii.com/ro1/JudasBible.pdf
-
if you block every item then when you asura and want to get some life you can't for 10sec. That could be a big problem in pvp xD
-
@spyra thx but this block all use item. what sevenrosuport want is to bloking sp regeneration by potion for 10 sec
-
+9 Glorious Fist r16588 asura not instant cast
Michi replied to Natsu Dragneel's question in Database Support
in official it's not giving instant cast with renewal it's only reduce the variable cast.