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

Real Map Project v0.8

Status
Not open for further replies.
Hello, Could some1 help me? I have done a web page but no1 cant go into it. Should i change ip somewhere or open any ports? please help!
 
Add Vampire Lord bosses!!! And Vampire Hunter Quest!!!You can take this scripts!
NPC Storkus
<?xml version="1.0" encoding="UTF-8"?>
<npc name="Storkus" script="data/npc/scripts/vampire_hunter_quest.lua" walkinterval="2000" floorchange="0">
<health now="150" max="150"/>
<look type="69" head="57" body="58" legs="76" feet="114" addons="0"/>
<parameters>
<parameter key="message_greet" value="Hello, |PLAYERNAME|!" />
</parameters>
</npc>

Lua Script

local keywordHandler = KeywordHandler:new()
local npcHandler = NpcHandler:new(keywordHandler)
NpcSystem.parseParameters(npcHandler)
local talkState = {}
function onCreatureAppear(cid) npcHandler:eek:nCreatureAppear(cid) end
function onCreatureDisappear(cid) npcHandler:eek:nCreatureDisappear(cid) end
function onCreatureSay(cid, type, msg) npcHandler:eek:nCreatureSay(cid, type, msg) end
function onThink() npcHandler:eek:nThink() end
function creatureSayCallback(cid, type, msg)
if(not npcHandler:isFocused(cid)) then
return false
end
local tokenid = 9020
local storage = 9020
local getstorage = getPlayerStorageValue(cid, storage)
local sorrymessage = "Sorry, you don't have enough tokens to progress in rank..."
local talkUser = NPCHANDLER_CONVBEHAVIOR == CONVERSATION_DEFAULT and 0 or cid
if msgcontains(msg, 'vampire lord token') then
if getstorage == 6 then
npcHandler:say("You are the highest vampire hunter rank now.", cid)
elseif getstorage < 6 then
npcHandler:say("Would ye' like to give me vampire tokens?", cid)
talkState[talkUser] = 1
end
elseif msgcontains(msg, 'rank') then
if getstorage < 1 then
npcHandler:say("You don't have any rank yet.", cid)
elseif getstorage == 1 then
npcHandler:say("You are {fluke} rank now.", cid)
elseif getstorage == 2 then
npcHandler:say("You are {lucky} rank now.", cid)
elseif getstorage == 3 then
npcHandler:say("You are {determined} rank now.", cid)
elseif getstorage == 4 then
npcHandler:say("You are {painstaking} rank now.", cid)
elseif getstorage == 5 then
npcHandler:say("You are {obliterative} rank now.", cid)
elseif getstorage == 6 then
npcHandler:say("You are {razing} rank now.", cid)
end
elseif msgcontains(msg, 'yes') then
if talkState[talkUser] == 1 then
if getstorage < 0 then
if doPlayerRemoveItem(cid, tokenid, 1) == TRUE then
npcHandler:say("Ye' brought the token needed to advance to the first vampire hunter rank. I consider that a fluke, but still, congrats! Let me share some of my experience with ye'.", cid)
setPlayerStorageValue(cid, storage, 1)
doPlayerAddExp(cid, 1000)
talkState[talkUser] = 0
elseif doPlayerRemoveItem(cid, tokenid, 1) == FALSE then
npcHandler:say(sorrymessage, cid)
talkState[talkUser] = 0
end
elseif getstorage == 1 then
if doPlayerRemoveItem(cid, tokenid, 4) == TRUE then
npcHandler:say("Ye' brought the token needed to advance to the second vampire hunter rank. I consider that a fluke, but still, congrats! Let me share some of my experience with ye'.", cid)
setPlayerStorageValue(cid, storage, 2)
doPlayerAddExp(cid, 5000)
talkState[talkUser] = 0
elseif doPlayerRemoveItem(cid, tokenid, 4) == FALSE then
npcHandler:say(sorrymessage, cid)
talkState[talkUser] = 0
end
elseif getstorage == 2 then
if doPlayerRemoveItem(cid, tokenid, 5) == TRUE then
npcHandler:say("Ye' brought the token needed to advance to the third vampire hunter rank. I consider that a fluke, but still, congrats! Let me share some of my experience with ye'.", cid)
setPlayerStorageValue(cid, storage, 3)
doPlayerAddExp(cid, 10000)
talkState[talkUser] = 0
elseif doPlayerRemoveItem(cid, tokenid, 5) == FALSE then
npcHandler:say(sorrymessage, cid)
talkState[talkUser] = 0
end
elseif getstorage == 3 then
if doPlayerRemoveItem(cid, tokenid, 10) == TRUE then
npcHandler:say("Ye' brought the ten tokens needed to advance to the fourth vampire hunter rank. You're absolutely painstaking! Let me share some of my experience with ye'.", cid)
setPlayerStorageValue(cid, storage, 4)
doPlayerAddExp(cid, 20000)
talkState[talkUser] = 0
elseif doPlayerRemoveItem(cid, tokenid, 10) == FALSE then
npcHandler:say(sorrymessage, cid)
talkState[talkUser] = 0
end
elseif getstorage == 4 then
if doPlayerRemoveItem(cid, tokenid, 30) == TRUE then
npcHandler:say("Ye' brought the thirty tokens needed to advance to the fifth vampire hunter rank. You're completely obliterative, kid! Let me share some of my experience with ye'.", cid)
setPlayerStorageValue(cid, storage, 5)
doPlayerAddExp(cid, 50000)
talkState[talkUser] = 0
elseif doPlayerRemoveItem(cid, tokenid, 30) == FALSE then
npcHandler:say(sorrymessage, cid)
talkState[talkUser] = 0
end
elseif getstorage == 5 then
if doPlayerRemoveItem(cid, tokenid, 50) == TRUE then
npcHandler:say("Ye' brought the fifty tokens needed to advance to the last vampire hunter rank. Now that's something. You're razing-amazing! Let me share some of my experience and a little something with ye'!", cid)
setPlayerStorageValue(cid, storage, 6)
doPlayerAddExp(cid, 100000)
doPlayerAddItem(cid, 9019, 1)
talkState[talkUser] = 0
elseif doPlayerRemoveItem(cid, tokenid, 50) == FALSE then
npcHandler:say(sorrymessage, cid)
talkState[talkUser] = 0
end
end
end
elseif(msgcontains(msg, 'no') and talkState[talkUser] == 1) then
npcHandler:say("Sure, come back when ye'll have enough tokens.", cid)
talkState[talkUser] = 0
end
return TRUE
end
npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback)
npcHandler:addModule(FocusModule:new())

And add location of npc : 32589, 31963, 7.
 
Hello, Could some1 help me? I have done a web page but no1 cant go into it. Should i change ip somewhere or open any ports? please help!
 
I have to clear somethings for you all here:

1. WE cannot help you with AAC related stuff, did we create Unnamed AAC ? NO !
2. We have already updated RMP v0.9 to TFS Mystic Spirit v0.2.4, the first minute it got released :thumbup:
3. We will release SOON, and just a hint: spaming doesn't help :D
I think we should just delay the release for 2 more weeks if there's more spam :blink: hah

We have reached over 2500 posts, I'd say 300 of them are nice comments and important messages from us.

So stop spam and asking us for help with your aac problems, we'll keep y'all informed.

/Limannen
 
If anyone got a problem, please don't hesitate to message me, I will help you!

You could put this in your first post, so people don't post here.
 
hmmm Limannen dont know if you'll already have been informed about this error:

some monsters listed on monsters.xml are missing in their respective files, as I discovered that when I was making my ACC page.
 
Will the Linux Problems on server startup be fixed in v0.9 ??
 
Do anyone have an ide about why the server crash, i have changed to the more stable .exe file, But when the sever has been online for 12 houer and up +, with 50 players~ my dedicated server works on 2.2GB RAM and 0-5% processor the server crash
i dont get any message about it or any errors in error file, nothing it only goes down

About the new realise, it is for client 8.42 or 8.5 ? :)
 
I don't want want to be an asshole, but why is svargrond and yalahar placed on random co-ordinates and not the real ones? awww, fuck!! :SSS

xD
 
@up it doesnt matter. will help to stop botters if they download wtp from forumm of bot..
NOBA CYKONOBIAN NO V9?>Me dedk u
 
[8.5] The Forgotten Server v0.2.4 (Mystic Spirit)

UPDATE?!!!!!!! V 9.0 right?!

o_O

//PoTh\\
 
Status
Not open for further replies.
Back
Top