English [Tibia]Speed

3 replies
Goto Page
To the start Previous 1 Next To the start
02.03.14 01:51:02 pm
Up
NeverLast
User
Offline Off
Hello,
I need help again
The speed item funktion doesn't work.
If i make a item:
Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
[408] = {
          name = "Wings V3[60]", 
          r = 255, g = 255, b = 255, 
          action = "ride", 
          slot = 7, 
          ground = true, 
          water = true, 
          fimage = "gfx/weiwen/fallenangelwings.png",  
          eimage = "gfx/weiwen/fallenangelwings.png",  
          speed = 75,  <--- This don't work :/
          level = 60, 
          func = equip,
     },

And i equip the wings i dont have speed,and no errors.
Idk why this doesn't work
Here my funktion.lua(EQUIP)
Spoiler >

funktion.lua (ITEMS)
Spoiler >
IMG:http://www.sloganizer.net/style3,NeverLast.png
03.03.14 03:57:21 am
Up
lenovo
GAME BANNED
Offline Off
Its function , not funktion

> This is a bug of your tibia, download another! His tibia was done wrong.
Banned again, how many accounts i will need create?
03.03.14 05:24:06 am
Up
Bleach
User
Offline Off
Just change this
Code:
1
parse("setmaxhealth " .. id .. " " .. PLAYERS[id].tmp.hp .. "; speedmod " .. id .. " " .. PLAYERS[id].tmp.spd .. "; sethealth " .. id .. " " .. player(id, "health"))

To this
Code:
1
2
3
parse("setmaxhealth " .. id .. " " .. PLAYERS[id].tmp.hp); 
parse("speedmod " .. id .. " " .. PLAYERS[id].tmp.spd); 
parse("sethealth " .. id .. " " .. player(id, "health"))
03.03.14 10:32:46 am
Up
NeverLast
User
Offline Off
Oh yes, this works thanks you so much. ∗
IMG:http://www.sloganizer.net/style3,NeverLast.png
To the start Previous 1 Next To the start