What's new

[8.1] 8 itemk?w - best set

Status
Not open for further replies.

Fizio95

Advanced User
Joined
Apr 8, 2008
Messages
317
Reaction score
3
Age
31
Zrobi?em kilka "Best Item?w" Na OTsy z wi?kszym expem. Itemy nie s? trudne do zrobienia ale dla takich leni lub ca?kowicie nowych mo?e si? przyda?.
Ma?y spis tre?ci:
1. Best Helmet (Arm 25, +5% atk magicznych)
2. Best Armor (Arm 25, +5% atk magicznych)
3. Best Legs(Arm 25, +5% atk magicznych)
4. Best Boots(Arm 25, +5% atk magicznych)
5. Best Wand (tylko dla MS i ED)
6. Best Sword
7. Best Axe
8. Proca <slingshot> (tylko dla palla)

1. Best Helmet
/data/Items.xml

<item id="2664" article="a" name="Best Helmet">
<attribute key="description" value="Najlepszy helm na serwerze."/>
<attribute key="weight" value="700"/>
<attribute key="armor" value="25"/>
<attribute key="slotType" value="head"/>
<attribute key="increaseMagicPercent" value="5"/>
2. Best Armor
/data/Items.xml

<item id="7884" article="a" name="Best Armor">
<attribute key="description" value="Najlepszy armor na serwerze."/>
<attribute key="weight" value="700"/>
<attribute key="armor" value="25"/>
<attribute key="slotType" value="head"/>
<attribute key="increaseMagicPercent" value="5"/>
3. Best Legs
/data/Items.xml

<item id="7885" article="a" name="Best Legs">
<attribute key="description" value="Najlepszy legsy na serwerze."/>
<attribute key="weight" value="700"/>
<attribute key="armor" value="25"/>
<attribute key="slotType" value="head"/>
<attribute key="increaseMagicPercent" value="5"/>
4. Best Boots
/data/Items.xml

<item id="2886" name="Best Boots">
<attribute key="description" value="Najlepszy bootsy na serwerze."/>
<attribute key="weight" value="750"/>
<attribute key="slotType" value="feet"/>
<attribute key="speed" value="300"/>
5. Best Wand
/data/Items.xml

<item id="7735" article="a" name="Best Wand">
<attribute key="description" value="Najlepszy wand na servie."/>
<attribute key="weight" value="2300"/>
<attribute key="weaponType" value="wand"/>
<attribute key="range" value="6"/>
/data/weapons/scripts/bestwand.lau
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_BLOCKARMOR, 1)
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HolyDAMAGE)
setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, 4)
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -1.0, -100, -0.5, -250)
function onUseWeapon(cid, var, item)
--By Fizio
chance = 40
quebrar = math.random(1,chance)
if quebrar == 0 then
doPlayerRemoveItem(cid,7735,1)
end
return doCombat(cid, combat, var)
end
/data/weapons/weapons.xml
<wand id="7735" range="6" lvl="1" mana="0" enabled="1" exhaustion="0" script="bestwand.lua"><vocation id="5"/><vocation id="6"/></wand>
6. Best Sword
/data/weapons/weapons.xml

<distance id="7417" range="1" enabled="1" exhaustion="0" hitchance="90" ammo="removecount" script="bestsword.lua"></distance>
/data/weapons/scripts/bestsword.lau
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_BLOCKARMOR, 1)
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE)
setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, 31)
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -1.5, -0, -1.0, -650)
function onUseWeapon(cid, var, item)
--By Fizio
chance = 40
quebrar = math.random(1,chance)
if quebrar == 0 then
doPlayerRemoveItem(cid,7417,1)
end
return doCombat(cid, combat, var)
end
/data/Items.xml
<item id="7417" article="a" name="Best Sword">
<attribute key="weight" value="2300"/>
<attribute key="defense" value="40"/>
<attribute key="attack" value="120"/>
<attribute key="weaponType" value="distance"/>
<attribute key="shootType" value="spear"/>
<attribute key="range" value="1"/>
<attribute key="breakChance" value="2"/>
7. Best Axe
/data/Items.xml

<item id="7455" article="a" name="Best Axe">
<attribute key="weight" value="2300"/>
<attribute key="defense" value="40"/>
<attribute key="attack" value="120"/>
<attribute key="weaponType" value="distance"/>
<attribute key="shootType" value="spear"/>
<attribute key="range" value="1"/>
<attribute key="breakChance" value="2"/>
/data/weapons/weapons.xml
<distance id="7417" range="1" enabled="1" exhaustion="0" hitchance="90" ammo="removecount" script="bestsword.lua"></distance>
/data/weapons/scripts/bestaxe.lau
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_BLOCKARMOR, 15)
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE)
setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, 31)
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -1.5, -0, -1.0, -650)
function onUseWeapon(cid, var, item)
--By Fizio
chance = 40
quebrar = math.random(1,chance)
if quebrar == 0 then
doPlayerRemoveItem(cid,7455,1)
end
return doCombat(cid, combat, var)
end
8. Proca
/data/Items.xml

<item id="5907" article="a" name="Proca">
<attribute key="weight" value="2000"/>
<attribute key="attack" value="40"/>
<attribute key="weaponType" value="distance"/>
<attribute key="shootType" value="spear"/>
<attribute key="range" value="5"/>
<attribute key="breakChance" value="2"/>
/data/weapons/scripts/proca.lau
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_BLOCKARMOR, 1)
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE)
setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_SMALLSTONE)
setCombatFormula(combat, COMBAT_FORMULA_SKILL, 0, 0, 0, 0)
function onUseWeapon(cid, var)
return doCombat(cid, combat, var)
end
/data/weapons/weapons.xml
<distance id="5907" range="5" enabled="1" exhaustion="0" ammo="hand" script="proca.lua"><vocation id="3"/><vocation id="7"/></distance>
Pozdrawiam i licz?, ?e komukolwiek to si? przyda :)
 

raphy246

Active User
Joined
Nov 29, 2009
Messages
124
Reaction score
7
Odp: [8.1] 8 itemk?w - best set

Z pewno?ci? przyda si? na serwery 4FuN. Mo?liwe, ?e mi te? si? przyda, bo zawsze szybciej b?dzie. :) Ocenka 8/10.
 

Fikusek

Banned
Joined
May 17, 2010
Messages
248
Reaction score
9
Odp: [8.1] 8 itemk?w - best set

Itemes Nawet fajne leczy chyba tylko dla pocz?tkujacych :)
Moja Ocena 6/10

Pozdrawiam Fikusek ;D
 

Betrox

Active User
Joined
Jul 26, 2008
Messages
129
Reaction score
6
Odp: [8.1] 8 itemk?w - best set

bestwand.lau
bestaxe.lau
proca.lau

B??d !

Powinno byc - .Lua
 

Honly

Active User
Joined
Oct 28, 2010
Messages
146
Reaction score
2
Odp: [8.1] 8 itemk?w - best set

@Sassin
Ogar -.-' da?e? Betroxowi upomnienie za co? Post nie jest ma?owarto?ciowy, poszukaj w s?owniku co to znaczy ...
@Topic
Spoko jest tylko mog?e? zrobi? od wi?kszych leveli.
 

Venom2010

User
Joined
Sep 2, 2010
Messages
44
Reaction score
1
Odp: [8.1] 8 itemk?w - best set

Do?? fajne itemy na 4fun ale tak na normalny serwer z expem x5-10 raczej nie :p daje 4.5/6 Mo?liwe, ?e kiedy? ich u?yje, ale zmieni? nazw? bo jest taka hmm cz?sta? :)
 

CWK

User
Joined
Nov 23, 2010
Messages
17
Reaction score
1
Odp: [8.1] 8 itemk?w - best set

Co do setu, to mogles tez pomy?le? o knightach i paladinach (dodac cos dla nich oprocz wzmocnienia ataku magicznego), nie przetestuje bo specjalnie mi sie to nie podoba (czy ja dobrze widze czy ten axe wali ze spear? :O ), nazwy s? dziwne ... Ale widz? ?e si? postara?e?, item?w jest 8, czyli wcale nie tak ma?o, wygl?da na to ?e nie jest ?le, moja ocena 7.5/10 :D
 

forgry

New User
Joined
Nov 28, 2010
Messages
7
Reaction score
0
Odp: [8.1] 8 itemk?w - best set

Witaj [you]​
Mam przyjemno?? zaprosi? na nowe forum po?wi?cone tematyce gier.
Czym jest to forum??
-Nowe forum kt?re szybko si? rozwija
-Du?a baza poradnik?w
-i wiele innych kt?rych nie chc? wymienia? by nie odbiera? wam przyjemo?ci z ich odkrywania

sygny.png


Zapraszam do korzystania
 
Status
Not open for further replies.
Top