• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Stats-Attackspeed

Sherice

Sky&Wind
Joined
Jan 20, 2012
Messages
183
Reaction score
7
Location
Sweden
Hihello, wanna know if I can somehow change the attackspeed without using a weapon with extra attackspeed.
I guess I need to do C++ :p Well if anyone can tell me how, i'd be grateful.


Thanks in advance, Sherice.
 
Thanks, works now =)

[EDIT]: Ehh, it seems to change every characters attackspeed, any idea how to fix so it only changes one players attackspeed?
 
Last edited:
Lol
Now every character has got the same attackspeed =/

so ... WHAT DO U WANT ??

if u want give attackspeed to players as afeature (donation)
u can do it iam using it as donation i gave u that script that iam using it

here is it again


Lua:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	if isInArray({2433,7438,2390,2400,2408,2446}, itemEx.itemid) then
			doItemSetAttribute(itemEx.uid, "description", " +50% attack speed.")
			doItemSetAttribute(itemEx.uid, "attackspeed", 500)
			doSendMagicEffect(toPosition,30)
			doRemoveItem(item.uid)
	else
		doPlayerSendCancel(cid, "Sorry, not possible.")
	end
return true
end

just edit this line
Lua:
if isInArray({2433,7438,2390,2400,2408,2446}, itemEx.itemid) then
and put ID of weapons which u want give it attackspeed
this script will give x weapon speed which u edit it
i think that is what u want
 
No it isn't what I want, haven't you read?
for the 5 time:

I WON'T USE WEAPONS.

Now do you understand? I want to change it without equiping anything, or else I could have done it myself.
An example. I cast a spell, and I gain attackspeed.
 
Back
Top