• 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!

[Request] Citizen and Level Tiles

Nevalopo

Demigod
Joined
Jul 21, 2008
Messages
5,165
Reaction score
68
Location
Sweden, Landskrona
Hello. I wanna request 2 small thing.

First thing:
When you click a statue you get citizen of a new city.

Second thing: Level tiles.. Like in rl rook level 2+ bridge.

Using 0.3.5pl1

Thanks for any help.
 
ok here you the first secript,test it.
Code:
local town = "Flaming"   --- town name
local townid = 1   --- put the town id
function onUse(cid, item, frompos, item2, topos)
doPlayerSetTown(cid, townid)
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "yor are now citizen of "..town.." Town.")
return 1
end
 
lol tiles and doors didnt worked .
maybe i can script you one fst you need it by levels only and give me the id of tile you need when player step on it must check his level
 
but i advise to try using this link i gave follow where to put script and then in you map editor on each tile you can set a lvl just double click on the tile a bos will appear in the place where there is Actionid
place after it 1000 + you lvel
example
if you want player lvl 200 to pass on this tile you will put
1200
if lvl 2000 you put(1000+lvl)
3000
 
Scripts are already in TFS

for Level Tile:
Level depending Level Door & Tile
1000 -> maximumDoorLevel + Required Level
So if you wanted level 2 tile: add actionID "1002"

for citizen:
iD:30020 - 30030
Just add ActionID 30021 to set for town 1, 30022 for town 2, etc..
works for up to 10 towns obviously.
 
Back
Top