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

Ctrl + V

Status
Not open for further replies.
13:48 Kyrtap Karoh [1]: hi
13:48 Szarpi Droot [2]: hi
13:48 Kyrtap Karoh [1]: lol
13:49 Kyrtap Karoh [1]: i thought you are a npc
 
function onCombat(cid, target)

if getPlayerStorageValue(cid,2345) == 2 and getPlayerStorageValue(target,2345) == 2 then
doCreatureSay(cid,"You cannot attack players which pvp mode is off.", TALKTYPE_ORANGE_1)
else
return true
end

end
 
[19:03:06] * [msg: Q]: ACHCOMPARE Hani Cykotitan
[19:03:06] * [Q]: Haniii Cykotitan
[19:03:06] * [Q]: [ 20] Channel Whore == [ 20] Channel Whore
[19:03:06] * [Q]: [ 20] Duke Sore Arse == [ 20] Duke Sore Arse
[19:03:06] * [Q]: [ 10] Security Conscious -> [ 30] Excessively Security Conscious
[19:03:06] * [Q]: [ 30] Q Obsessed -> [ 50] Q Abuser
[19:03:06] * [Q]: [ 20] Bouncy Bouncy -> [ 40] Captain Unstable
[19:03:06] * [Q]: [ 20] T-1000 -> [ 30] Agent Smith
[19:03:06] * [Q]: [ 30] Ferris Bueller <- [ 20] Away From Keyboard
[19:03:06] * [Q]: [ 30] Leased Line <- [ 20] ISDN
[19:03:06] * [Q]: [ 40] Egotistical == [ 40] Egotistical
[19:03:06] * [Q]: [ 50] My Little Pwny <- [ 30] Masterful
[19:03:06] * [Q]: [ 10] Flagpole == [ 10] Flagpole
[19:03:06] * [Q]: [ 10] Captain Pugwash <-
[19:03:06] * [Q]: [ 30] Stalker -> [ 40] NSA
[19:03:06] * [Q]: [ 20] Look ma, no mIRC! == [ 20] Look ma, no mIRC!
[19:03:06] * [Q]: [ 50] Warchief <- [ 10] Big Fish in a Small Pond
[19:03:06] * [Q]: -> [ 20] Not Just For Show
[19:03:06] * [Q]: [ 40] Bulldozer <-
[19:03:06] * [Q]: [ 20] Fish Are Friends Not Food == [ 20] Fish Are Friends Not Food
[19:03:06] * [Q]: -> [ 20] Mootious
[19:03:06] * [Q]: [ 50] Troutly Wisdom == [ 50] Troutly Wisdom
[19:03:06] * [Q]: [ 20] Slurm Slurm Slurm == [ 20] Slurm Slurm Slurm
[19:03:06] * [Q]: [ 20] Second Coming == [ 20] Second Coming
[19:03:06] * [Q]: [ 20] Show Me the Purples == [ 20] Show Me the Purples
[19:03:06] * [Q]: [ 20] Let the Games Begin == [ 20] Let the Games Begin
[19:03:06] * [Q]: [ 5] Trivial Pursuit -> [ 30] Smart Arse
[19:03:06] * [Q]: [ 20] Hopelessly Addicted == [ 20] Hopelessly Addicted
[19:03:06] * [Q]: [ 60] Quick Reflexes == [ 60] Quick Reflexes
[19:03:06] * [Q]: [ 20] Playing With Fire == [ 20] Playing With Fire
[19:03:06] * [Q]: [ 20] Here Kitty Kitty == [ 20] Here Kitty Kitty
[19:03:06] * [Q]: [ 20] Domesticated! == [ 20] Domesticated!
[19:03:06] * [Q]: 725 total 740 total
[19:03:06] * [Q]: End of list. User Cykotitan is ahead by 15 points!
 
local config = {
storage = 9432,
version = 1, -- Increase this value after adding new marks, so player can step again and receive new map marks
marks = {
{mark = 5, pos = {x = 166, y = 439, z = 7}, desc = "Main City Temple"},
{mark = 7, pos = {x = 300, y = 200, z = 7}, desc = "NPC with tools!"},
{mark = 1, pos = {x = 666, y = 666, z = 6}}
}
}

local f_addMark = doPlayerAddMapMark
if(not f_addMark) then f_addMark = doAddMapMark end

function onStepIn(cid, item, position, fromPosition)
if(isPlayer(cid) ~= TRUE or getPlayerStorageValue(cid, config.storage) == config.version) then
return
end

for _, m in pairs(config.marks) do
f_addMark(cid, m.pos, m.mark, m.desc ~= nil and m.desc or "")
end
setPlayerStorageValue(cid, config.storage, config.version)
return TRUE
end
 
local config = {
storage = 9432,
version = 1, -- Increase this value after adding new marks, so player can step again and receive new map marks
marks = {
{mark = 5, pos = {x = 166, y = 439, z = 7}, desc = "Main City Temple"},
{mark = 7, pos = {x = 300, y = 200, z = 7}, desc = "NPC with tools!"},
{mark = 1, pos = {x = 666, y = 666, z = 6}}
}
}

local f_addMark = doPlayerAddMapMark
if(not f_addMark) then f_addMark = doAddMapMark end


function onStepIn(cid, item, position, fromPosition)
if(isPlayer(cid) ~= TRUE or getPlayerStorageValue(cid, config.storage) == config.version) then
return
end

for _, m in pairs(config.marks) do
f_addMark(cid, m.pos, m.mark, m.desc ~= nil and m.desc or "")
end
setPlayerStorageValue(cid, config.storage, config.version)
return TRUE
end
veri veri bugas.
--
65498
 
Status
Not open for further replies.
Back
Top