• 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.
I open the friend ot everything right and then when I leave online login the account manager and the server's error fexa what is happening?

Could you try that again with the binary [.exe] that I've just compiled (rebuilded all files in Forgotten DevC++ 2.4);
Download link: TheForgottenServer.rar
 
This is awsome, i would like to try it!

Currently, it's far from being awesome. I have addressed a lot of bugs in version 0.8.1. I can't say the exact release date, it depends on both me and Limannen.
 
Currently, it's far from being awesome. I have addressed a lot of bugs in version 0.8.1. I can't say the exact release date, it depends on both me and Limannen.

Hehehe yeah me too, but i mean 14 citys hehe ;)
 
more one

9- I think if stages.xml dont worry because i change to multipler="1" and continue the same think
 
data/XML/stages.xml
Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
[B]	<config enabled="[COLOR="Red"]1[/COLOR]"/>[/B]
	...
 
Some bugs:
*Fire corridor to Venore D lair missing a Rope spot.
*A wall in the way in after you have done Svargrond arena so you cant take the chests.
*Rashid dont spawn.
*Desert quest dont work.
 
Some bugs:
*Fire corridor to Venore D lair missing a Rope spot.
*A wall in the way in after you have done Svargrond arena so you cant take the chests.
*Rashid dont spawn.
*Desert quest dont work.

Fixed all of the above, just one more little thing;
Where should I place Rashid? In Real Tibia, he moves to another city on each server save..
 
Fixed all of the above, just one more little thing;
Where should I place Rashid? In Real Tibia, he moves to another city on each server save..

Hmm dont know,
Some more bugs:
*The food npc in edron for sell brown mushroom dont exist.
*Nomad drop Dragon Scale legs
*You cant buy "bp sds" from shop, same with M walls and other runes
*Promotion npc, you need to say "promote" should be "Promotion"
*NPC's in Darashia
*No RL djinn shops in Ank exist.
 
@Wladca
Sorry for the Banuta and Dark Cathedral teleports. It seems that I didn't save (my editor crashed) at the time I made those changes. I have fixed them now :thumbup:.
 
@Cykotitan

There are still some teleports and quest for repair...
You going to fix everything else is missing?

Thanks
 
@Wladca
Sorry for the Banuta and Dark Cathedral teleports. It seems that I didn't save (my editor crashed) at the time I made those changes. I have fixed them now :thumbup:.

No problem :thumbup:
To the Rashid NPC...
I saw special script for him in other forums...He change localisation!
I'm going to check it!
When I found I give info

;*
 
@Wladca

I think i've also seen a rashid script before on a polish forum or so can't remember :S anyways i'll do some search.
 
Code:
  local myNewPos = {
        [1] = {x=32210, y=31157, z=7},
        [2] = {x=32297, y=32831, z=7},
        [3] = {x=32574, y=32752, z=7},
        [4] = {x=33067, y=32880, z=6},
        [5] = {x=33239, y=32483, z=7},
        [6] = {x=33170, y=31810, z=6},
        [7] = {x=32328, y=31782, z=7}
        }
local TpTime = 86400 --secs
local myLastTP = 0
local a = 1
function onThink()
        if myLastTP == 0 then
                myLastTP = os.time()
        end
        if os.difftime (os.time(), myLastTP) >= TpTime then
                myLastTP = os.time()
                doCreatureSay(getNpcCid(), "See you, Now Im going to the next city!", TALKTYPE_SAY)
                doTeleportThing(getNpcCid(), myNewPos[a], FALSE)
                if (a + 1) < 7 then
                        a = a + 1
                else
                        a = 1
                end                    
        end
        if (os.clock() - talk_start) > 30 then
                if focus > 0 then
                        selfSay('I don\t got all day!')
                end
                focus = 0
        end
        if focus ~= 0 then
                if getDistanceToCreature(focus) > 5 then
                        selfSay('Good bye then.')
                        focus = 0
                end
        end
                npcHandler:onThink()
end

Try That
 
Status
Not open for further replies.
Back
Top