Forum

> > CS2D > Scripts > can anyone tell me what the tibia lvl is ?
Forums overviewCS2D overview Scripts overviewLog in to reply

English can anyone tell me what the tibia lvl is ?

2 replies
To the start Previous 1 Next To the start

old Re: can anyone tell me what the tibia lvl is ?

Necr0
User Off Offline

Quote
to set a lvl with script:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
elseif command =='w' then
			local w = words:find(' ',4)
			local target = tonumber(words:sub(4,w))
			if target then
				if player(target,'exists') then
					local lvl = w and tonumber(words:sub(w+1,words:find(' ',w+1))) or nil
					if lvl then
						PLAYERS[target].Level = lvl
						return 1
					end
				end
			end
			msg2(id,'set lvl: "!w <target> <lvl>"')
			return 1
in admin.lua

to set a lvl with console:
1
lua "PLAYERS[ID HERE].Level = LEVEL HERE"
To the start Previous 1 Next To the start
Log in to reply Scripts overviewCS2D overviewForums overview