badriniki
Members-
Posts
281 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by badriniki
-
WTB [WTB] Faction Gracia Final Pack
badriniki replied to badriniki's topic in Marketplace [L2Packs & Files]
BUMP -
Hi everyone, I'm searching an developer or an ready server to upload in my 2 PC( 8 Go, 1000 Mbps connection, 500 HDD). I pay it every mouth.. So if someone has maked an good server, and don't have PC to upload it, i can pay for you, i just ask to be GM in server(ps:know java/sql/htm/etc). pm me here, or add msn: mgk-style@hotmail.fr Be faster please.
-
Added new WebSite: http://lastpvp.awardspace.info Join Us !
-
Very beautiful web, thanks for share man
-
Yes, enchant i make it not to big and not to low to better pvp :)
-
To enchant skill doesn't need exp/sp: Good one for high rates servers or faction servers.. Code: UPDATE enchant_skill_trees SET sp=0; UPDATE enchant_skill_trees SET exp=0; Don't work i have tested, write don't have items to enchant skill(but i have the books and sp/xp) ^^
-
Added: Custom Start level of SubClass: 85 now !
-
Thank you for your advice bro.
-
What i can do for you, this is pvp server, and this is pvp zone, what do you do in pvp zone if you dont wanna be killed. Make a party, and kill them then :) or go to Elven Ruins to farm some mobs :D Not anymore.
-
Today record is was 22 players... I think many players will come in that server (i hope) xD
-
Server just open yesterday 20a.m
-
New International L2LastPvP Gracia Final Server: LastPvP: - Server's Info - Client: GRACIA FINAL Server : 6Go/1000 Mbps connection/Quad Core Q6600 GamePlay : PVP/PK ONLY Exp: Instant Max Level ! Sp: Max SP ! Adena: x10,000 - Enchant's Info - Safe Enchant : +3 Max Enchant : +10 Weapon Enchant Rate : 60% Armor Enchant Rate : 60% Jewels Enchant Rate : 60% Normal and Blessed Scrolls have the same enchant rate ! - Supports - :FULL AIO NPC: :Server's Infos: :Top 20 PVP/PK Players: :Deluxe Buffer(with pet buffer): :Gatekeeper: :GM Shop(Max Grade: S grade!): :Clan & Alliance options: :SubClass options: :Class Master: :Augment: :Symbol Maker: :Skill Enchanter: :Attribute Manager: :Nobless Manager: :Wedding Manager: - Fixes & Addons - :Starting level 85 + 100% + full vitality + SP: :Sub Class level 85 + SP: :PvP NickName Color System: :Good CTF / TVT Events: :PvP Kill = 1 Coin(used to buy S grade Items/Enchant Scrolls): :Anti Farm system in server(for coin): :Noblesse = 25 Coins: :N/D/C/B/A Grade are for Free!: :Full Geodata: :Skills 80-83 lvls: :FULL AIO NPC(NO S80-84, TATTOO's,NO CUSTOM): :Starting zone Schuttgart(all npc are there): :No need xp/sp to enchant skills: :All mobs under 50 lvl are deleted: :GM Shop: Max Grade = S grade: :0 Weight for items/armors/weapons: :Max Buff amount: 26: :Max Dance/Song amount: 15: :Spawn Protection: 45 sec: :Buffs are for 3 hours: :No Death Penalty: And Much More To See In-Game ! ! Waiting You! ;) Forum Link: http://lastpvp.xooit.com Site Link: http://lastpvp.awardspace.info.
-
Now you found it ^^
-
Nice, searching for it. Ty
-
WTB [WTB] Faction Gracia Final Pack
badriniki replied to badriniki's topic in Marketplace [L2Packs & Files]
BUMP -
ahaha :P
-
np :)
-
[Share]Max lvl 100 On Gracia Final(NO VISUAL BUG)
badriniki replied to Madboy's topic in Server Shares & Files [L2J]
Thanks, this is then you exping at lvl 85 and 100% , then u kill mobs and ur lvl increase ? -
[SHARE] Hero status Script L2J
badriniki replied to Strength's topic in Server Development Discussion [L2J]
nice work, ths for this share! -
delete topic then, didn't seen your share
-
Thanks 1tm for adding your scripts :)
-
np :p
-
[SHARE] Imperial Custom Skills!
badriniki replied to badriniki's topic in Client Development Discussion
In la2base they say edit this skills are easy for interlude/hellbound/etc.. Don't know how, i think need just edit systexture files.. -
Compare with your pack and edit the no-grade scripts to have the same syntax
-
Hi everyone, here is some usefull SQL scripts (examples, you can edit them whatever you want) ! [glow=green,2,300]Thx to badriniki[/glow] 0 Weight for items/armors/weapons: Drop Adena 100%: When you sell, everything will cost 0 adena: Update all RaidBoss 5000k hp: Delete all mobs under 40 lvl: Delete all materials and recipes from db: Increase drop rate for recipes: Delete characters and accounts if they do not connect for 3 months: Add for all monsters in drop: Coins Top No-Grade in start:(Need to modif for kamaels) Add RaidBoss jewels if you have deleted them: [glow=green,2,300]Thx to 1tm[/glow] Delete all spellbooks from db: DELETE FROM droplist WHERE itemid IN (SELECT item_id FROM etcitem WHERE item_type= 'spellbook' ); Increases Guards (p.def, m.def, p.atk, hp) by 50%: UPDATE npc SET pdef = pdef * 1.5 WHERE type = 'L2Guard'; UPDATE npc SET hp = hp * 1.5 WHERE type = 'L2Guard'; UPDATE npc SET patk = patk * 1.5 WHERE type = 'L2Guard'; UPDATE npc SET mdef = mdef * 1.5 WHERE type = 'L2Guard'; Decreases Raidboss defense by 40%: UPDATE npc SET pdef = pdef * 0.6 WHERE type = 'L2RaidBoss'; UPDATE npc SET hp = hp * 0.6 WHERE type = 'L2RaidBoss'; UPDATE npc SET mdef = mdef * 0.6 WHERE type = 'L2RaidBoss'; All new player chars spawn loc: UPDATE char_templates SET x=yourXcoordinate; UPDATE char_templates SET y=yourYcoordinate; UPDATE char_templates SET z=yourZcoordinate; Increases all chars p.def/m.def by 10%: UPDATE char_templates SET P_DEF = P_DEF * 1.1; UPDATE char_templates SET M_DEF = M_DEF * 1.1; Increases all chars speed by 20%: UPDATE char_templates SET MOVE_SPD = MOVE_SPD * 1.2; Increases all chars CP. At 20lv by 22%, at 40lv by 44%, at 76lv by 66%: This one good one for longer pvps.. UPDATE lvlupgain SET defaultcpbase = Defaultcpbase * 1.66 WHERE class_lvl = '76'; UPDATE lvlupgain SET defaultcpbase = Defaultcpbase * 1.44 WHERE class_lvl = '40'; UPDATE lvlupgain SET defaultcpbase = Defaultcpbase * 1.22 WHERE class_lvl = '20'; MP rengerates 10 times more(unlimited mp): Good one for high servers who has mp potions etc.. UPDATE lvlupgain SET defaultmpmod = defaultmpmod * 10.0; Teleports cost 0 adena: UPDATE teleport SET price=0; Create common item skill delete: It used as bug at olympiad, with it you can buff with soes, mental dagers etc in secs... DELETE FROM skill_trees WHERE skill_id = 1320; DELETE FROM skill_trees WHERE skill_id = 1322; Grade penality delete: Disables grade penality... DELETE FROM skill_trees WHERE skill_id = 239; Raidbosses always spawns with 70% hp: More realistic that new spawned rb has not full hp. Good one for organized clans or parties... UPDATE raidboss_spawnlist SET currentHp = currentHp * 0.7; Dies adding price reduced to 5 adena (or increased to 100kk): Good one for faction servers. UPDATE henna SET price=5; ..or to 100kk (good one for high rates servers). UPDATE henna SET price=100000000; Newbie npc buffer buffes all buffs from 1lv to 62lv: Really use full newbie characters to have all buffs from 1lv (if yuo want U may change upper level to 85, for daily bufer). UPDATE helper_buff_list SET lower_level=1; UPDATE helper_buff_list SET upper_level=62; To enchant skill doesn't need exp/sp: Good one for high rates servers or faction servers.. UPDATE enchant_skill_trees SET sp=0; UPDATE enchant_skill_trees SET exp=0; Auto server restart: Every week.. INSERT INTO `global_tasks` VALUES ("5", "restart", "TYPE_SHEDULED", "2147483647", "604800000", "86400000", "360"); Every two days.. INSERT INTO `global_tasks` VALUES ("5", "restart", "TYPE_SHEDULED", "2147483647", "172800000", "86400000", "360"); Every 24h.. INSERT INTO `global_tasks` VALUES ("5", "restart", "TYPE_SHEDULED", "2147483647", "86400000", "86400000", "360"); Every 12h.. INSERT INTO `global_tasks` VALUES ("5", "restart", "TYPE_SHEDULED", "2147483647", "43200000", "43200000", "360"); Every 6h.. INSERT INTO `global_tasks` VALUES ("5", "restart", "TYPE_SHEDULED", "2147483647", "21600000", "21600000", "360"); Every 3h.. INSERT INTO `global_tasks` VALUES ("5", "restart", "TYPE_SHEDULED", "2147483647", "10800000", "10800000", "360"); [glow=green,2,300]Thx to lekino[/glow] Custom Spawn in Giran Castle Town & items.(For Fighters Theca Leather Armor Set and Crystal Dagger .For Mystics Karmian Robe Set and Homunkulus's Sword) UPDATE `char_templates` SET `x` = '83400', `y` = '147943', `z` = '-3404'; UPDATE `char_templates` SET `items1` = '420', `items2` = '400', `items3` = '2436', `items4` = '6358', `items5` = '2460' WHERE `char_templates`.`ClassId` =0 LIMIT 1 ; UPDATE `char_templates` SET `items1` = '420', `items2` = '400', `items3` = '2436', `items4` = '6358', `items5` = '2460' WHERE `char_templates`.`ClassId` =18 LIMIT 1 ; UPDATE `char_templates` SET `items1` = '420', `items2` = '400', `items3` = '2436', `items4` = '6358', `items5` = '2460' WHERE `char_templates`.`ClassId` =31 LIMIT 1 ; UPDATE `char_templates` SET `items1` = '420', `items2` = '400', `items3` = '2436', `items4` = '6358', `items5` = '2460' WHERE `char_templates`.`ClassId` =44 LIMIT 1 ; UPDATE `char_templates` SET `items1` = '420', `items2` = '400', `items3` = '2436', `items4` = '6358', `items5` = '2460' WHERE `char_templates`.`ClassId` =53 LIMIT 1 ; UPDATE `char_templates` SET `items1` = '439', `items2` = '471', `items3` = '2430', `items4` = '2454', `items5` = '6313' WHERE `char_templates`.`ClassId` =10 LIMIT 1 ; UPDATE `char_templates` SET `items1` = '439', `items2` = '471', `items3` = '2430', `items4` = '2454', `items5` = '6313' WHERE `char_templates`.`ClassId` =25 LIMIT 1 ; UPDATE `char_templates` SET `items1` = '439', `items2` = '471', `items3` = '2430', `items4` = '2454', `items5` = '6313' WHERE `char_templates`.`ClassId` =38 LIMIT 1 ; UPDATE `char_templates` SET `items1` = '439', `items2` = '471', `items3` = '2430', `items4` = '2454', `items5` = '6313' WHERE `char_templates`.`ClassId` =49 LIMIT 1 ; Hope this will help you a little ;)
