-
Content Count
596 -
Joined
-
Last visited
-
Days Won
25
Content Type
Profiles
Forums
Downloads
Staff Applications
Calendar
Everything posted by Kuya Jeo
-
@@minx123 mark as solve to help others, tia
-
@@minx123 yea
-
@@minx123 restart your server after applying the changes
-
@@minx123 goto sc_config.txt (path : trunk/db/sc_config.txt) FIND : SC_PROTECTWEAPON, 28SC_PROTECTSHIELD, 28SC_PROTECTARMOR, 28SC_PROTECTHELM, 28 CHANGE TO SC_PROTECTWEAPON, 12SC_PROTECTSHIELD, 12SC_PROTECTARMOR, 12SC_PROTECTHELM, 12
-
@@elche27 to get connected into your server, you need to edit your clientinfo.xml IP ADDRESS and PORT here is the wiki http://herc.ws/wiki/Clientinfo.xml
-
@@mrlongshen i saw this prontera somewhere in ratemyserver by olrox i think, or just search it on RMS and rAthena downloads
-
i think this is calm prontera and the flooring has been customize, the original flooring of that prontera is the old prontera
-
@@mrlongshen try this code - script buff -1,{OnInit: bindatcmd "buff",strnpcinfo(3)+"::OnBuff"; end;OnBuff: if ( getgmlevel() > 0 ){ percentheal 100,100; skilleffect 384,0; sc_start SC_MELTDOWN,360000,10; skilleffect 383,0; sc_start SC_WINDWALK,360000,10; skilleffect 378,0; sc_start SC_EDP,360000,10; skilleffect 465,0; sc_start SC_KAITE,360000,10; skilleffect 464,0; sc_start SC_KAUPE,360000,10; skilleffect 463,0; sc_start SC_KAAHI,360000,10; skilleffect 462,0; sc_start SC_KAIZEL,360000,10; skilleffect 8,0; sc_start SC_ENDURE,360000,10; skilleffect 33,0; sc_start SC_ANGELUS,360000,10; skilleffect 45,0; sc_start SC_CONCENTRATE,360000,10; skilleffect 74,0; sc_start SC_MAGNIFICAT,360000,10; skilleffect 75,0; sc_start SC_GLORIA,360000,500; skilleffect 459,0; sc_start SC_ADRENALINE2,360000,10; skilleffect 66,0; sc_start SC_IMPOSITIO,360000,10; skilleffect 67,0; sc_start SC_SUFFRAGIUM,360000,500; skilleffect 34,0; sc_start SC_BLESSING,360000,10; skilleffect 29,0; sc_start SC_INCREASEAGI,360000,10; skilleffect 112,0; sc_start SC_WEAPONPERFECTION,360000,10; skilleffect 113,0; sc_start SC_OVERTHRUST,360000,10; skilleffect 114,0; sc_start SC_MAXIMIZEPOWER,360000,10; skilleffect 357,0; sc_start SC_CONCENTRATION,360000,10; skilleffect 355,0; sc_start SC_AURABLADE,360000,10; skilleffect 155,0; sc_start SC_LOUD,360000,10; skilleffect 157,0; sc_start SC_ENERGYCOAT,360000,10; sc_start SC_ASPDPOTION2,360000,10; sc_start SC_STRFOOD,360000,10; sc_start SC_AGIFOOD,360000,10; sc_start SC_VITFOOD,360000,10; sc_start SC_INTFOOD,360000,10; sc_start SC_DEXFOOD,360000,10; sc_start SC_LUKFOOD,360000,10; sc_start SC_HitFOOD,1200000,30; sc_start SC_FleeFOOD,1200000,30; sc_start SC_BATKFOOD,1200000,10; sc_start SC_MATKFOOD,120000,10; skilleffect 380,0; sc_start SC_TRUESIGHT,360000,10; skilleffect 361,0; sc_start SC_ASSUMPTIO,360000,10; end; } else { dispbottom "You cannot use this command"; end; }}
-
@@mrlongshen Script: <" disguise 1026; bonus bLuk,2;">OnUnequipScript: <" undisguise; "> just put munak and Luk 2 for sample change the monster id 1026 and the bonus stats
-
to recompile a plugins make clean make plugin make sql if make plugin doesn't work try to use make plugins make clean make plugin make sql
-
@@glemor123 sd->state.autotrade = 1;sd->state.monster_ignore = 1;pc_setsit(sd); remove the pc_setsit(sd) then recompile
-
thor patcher? neoncube? what kind of patcher you're using?
-
@@minx123 just add curly bracket FIND THIS end;//--------------- Duplicates -------------------------------// Add Curly Bracket between end; and //------------------------- Duplicates ----------------------// and it should be like this end;}//--------------- Duplicates -------------------------------//
-
@@minx123 find this if( #delay > gettimetick(1) ){ dispbottom "Delaying...";}else{ set zeny,zeny-50000000; warp "bossnia_0" + .@choice,202,204; set #delay,#delay + ( 3600 * 5 );}end; Change to this : if( #delay > gettimetick(1) ){ dispbottom "Delaying...";}else{ set zeny,zeny-50000000; warp "bossnia_0" + .@choice,202,204; set #delay,#delay + ( 3600 * 5 );}end;}
-
@@Frost read it here how to put it http://www.eathena.ws/board/index.php?showtopic=170497
-
@@Frost try this one Credit with AnnieRuru from rAthena function script int__ { .@i = getstrlen( .@str$ = getarg(0) ) -3; .@is_negative = charat( .@str$, 0 ) == "-"; while ( .@i > .@is_negative ) { .@str$ = insertchar( .@str$, ",", .@i ); .@i -= 3; } return .@str$;} or this one from eAthena http://www.eathena.ws/board/index.php?showtopic=170497
-
@@mrlongshen just remove the permission in vending.c FIND THIS : /*========================================== * Request a shop's item list *------------------------------------------*/void vending_vendinglistreq(struct map_session_data* sd, unsigned int id) { struct map_session_data* vsd; nullpo_retv(sd); if( (vsd = map->id2sd(id)) == NULL ) return; if( !vsd->state.vending ) return; // not vending if (!pc_can_give_items(sd) || !pc_can_give_items(vsd)) { //check if both GMs are allowed to trade // GM is not allowed to trade clif->message(sd->fd, msg_sd(sd,246)); return; } sd->vended_id = vsd->vender_id; // register vending uid clif->vendinglist(sd, id, vsd->vending);} Remove this line if (!pc_can_give_items(sd) || !pc_can_give_items(vsd)) { //check if both GMs are allowed to trade // GM is not allowed to trade clif->message(sd->fd, msg_sd(sd,246)); return; }
-
you need to modified it in vending.c
-
groups.conf under permission can_trade : false
-
@@koko24 use langtype 1
-
@@koko24 here's the sql SET FOREIGN_KEY_CHECKS=0;-- ------------------------------ Table structure for `ownladder`-- ----------------------------DROP TABLE IF EXISTS `ownladder`;CREATE TABLE `ownladder` ( `guild_id` int(11) NOT NULL DEFAULT '0', `name` varchar(24) NOT NULL DEFAULT '', `currentown` smallint(6) unsigned NOT NULL DEFAULT '0', `highestown` smallint(6) unsigned NOT NULL DEFAULT '0', `owntime` datetime DEFAULT NULL, PRIMARY KEY (`guild_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;-- ------------------------------ Records of ownladder-- ------------------------------ ------------------------------ Table structure for `pvpladder`-- ----------------------------DROP TABLE IF EXISTS `pvpladder`;CREATE TABLE `pvpladder` ( `char_id` int(11) NOT NULL DEFAULT '0', `name` varchar(30) NOT NULL DEFAULT '', `streaks` smallint(6) unsigned NOT NULL DEFAULT '0', `kills` smallint(6) unsigned NOT NULL DEFAULT '0', `deaths` smallint(6) unsigned NOT NULL DEFAULT '0', `streaktime` datetime DEFAULT NULL, PRIMARY KEY (`char_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;-- ------------------------------ Records of pvpladder-- ----------------------------
-
@@ElariaRO if the script is working then try to make the ring that can be traded to other
-
@@Graystone you can see that in trunk/conf/inter-server.conf // Level range for sharing within a partyparty_share_level: 15
-
@@classy5 - try to use langtype 1 instead of 0 - you can see in the cmd if your client is not compatible with your MMO.h PACKETVER. - and check if the client is reading data folder 1st or multi-grf ( data.ini )