-
Content Count
73 -
Avg. Content Per Day
0 -
Joined
-
Last visited
-
I tried all that but this piece oc shell command resolve my problem scl enable devtoolset-7 bash Link here: https://github.com/rathena/rathena/wiki/Install-on-Centos Thank you so much Haruka
-
Hi :). Im encountering a problem in Centos 6 i already install -y install gcc-c++ but i still have this error checking for gcc... gcc checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking for ar... /usr/bin/ar checking whether byte ordering is bigendian... yes configure: error: bigendian is not supported... stopping [vps369925 new]$
-
Hi . sorry for the late reply When i do that kind of trap the OnPCStatsCalcEvent skills is not available anymore even though i use @skillall
-
Hi, . i will put sc_start blessing,999999; ? actually when i talk to the buffer npc , the skills given by the OnPCStatCalcEvent is been remove . and in my observation its because of the sc_start. this is the buffs in my Buffer NPC Thank you sir sc_start SC_INCREASEAGI,240000,10; sc_start SC_BLESSING,240000,10;
-
Hi, I used OnPCStatCalcEvent to give permanent skills to every player but i encounter a problem every time i used the buffer NPC who uses sc_start blessing ,agi even Awakening Potion who also use SC_START the OnPCStatCalcEvent skills is been remove it only come back when i relog-in or i type @skillall . how can i make that the OnPCStatCalcEvent will not be overlap by sc_start Thank you i have the same problem with this LINK
-
Hi im having a problem using OnPCStatCalcEvent and SC_Start in my server i use OnPCStatCalcEvent to give some permanent skills to players and i used sc_start in my buffer npc so this is the case every time i clicked the buffer npc my OnPCStatCalcEvent skills has been remove it only comeback when i used @skillall how can i solve this ? thanks im using a script - script Skills -1,{ OnPCLoadMapEvent: if(strcharinfo(3) == "prontera") { addtoskill 2,10,0; addtoskill 3,10,0; addtoskill 4,10,0; addtoskill 5,10,0; } else { end; } } prontera mapflag loadevent every time i used awakening and clicked buffer npc that use SC_START <skills> the addtoskills has been remove ?? how to solve this
-
Hi sir Emistry sorry for the long late reply. btw how can i put all the skills to all character for example if the character get the max level he/shewill get all the trans skills
-
how can i give to every player the trans skills . thanks.
-
Someone help i want to give to each player all the skills of the Trans class Thank you
-
sir can you elaborate more please thankyou for you reply
-
Hi sir crazyarashi can you elaborate more what should i do to remove the 3rdjobs skills ?? thankyou or is there something i can do to give all the skills to a player ?? i tried skills <skillid><skilllevel><0>; but not every skills is showing
-
hi in my server i enable the skill_all: true function inside the group.conf and I want to know where can i edit the skills because i want to remove some skills that is automatically in there specially the (3rd job skills) thank you!
-
pvp_nightmare mode not is not working on latest SVN ?? i tried to @die and @alive for 50 times and i also increase the percentage to 600 but still nothing i also checked the mapflag if its enabled and its on still no drop of my items thanks
-
as i checked my database sir. the reborncount is inside the char_reg_num . but still not displaying
-
hi, i messing with this script so much hours , i dont see any drop items in the floor , the items is succesfully deleted on my inventory, but the items is not dropping on the ground and there is no error, and i think there was something wrong in makeitem2 prontera,150,155,3 script penalty_drop 103,{ OnPCDieEvent: if ( [email protected] > -1000 ) { [email protected] = ( pkpoints / 1000 ); if ( [email protected] < 0 ) [email protected] = 1; if ( [email protected] < rand( 100 ) ) { for ( [email protected] = 1; [email protected] <= 10; [email protected]++ ) if ( getequipid( [email protected] ) != -1 ) [email protected]_part_found++; if ( [email protected]_part_found ) { do { [email protected]_part = rand( 1,10 ); [email protected]_id = getequipid( [email protected]_part ); } while( [email protected]_id == -1 ); [email protected] = getequiprefinerycnt( [email protected]_part ); for ( [email protected] = 0; [email protected] < 4; [email protected]++ ) [email protected][[email protected]] = getequipcardid( [email protected]_part,[email protected] ); getmapxy( [email protected]$,[email protected],[email protected],0 ); delequip [email protected]_part; makeitem2 [email protected]_id,1,[email protected]$,[email protected],[email protected],1,[email protected],0,[email protected][0],[email protected][1],[email protected][2],[email protected][3]; dispbottom "One of your equipment dropped."; } } } end; }