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

The Forgotten Server v0.3 (alpha 2)

Status
Not open for further replies.
I'm on gentoo, newest mysql, and also have this connection problem ;s

I'm running Debian and it works fine here, Elf is running Debian as well and he hasn't complained about it either. Run: cat /etc/mysql/my.cnf and show me the output.
 
If you die in pvp zone you will die for real.
plz fix in creature.cpp on line 784 where it says
Code:
death();
and change it to
Code:
if(getZone() != ZONE_PVP)
death();

So you wont die if there's a pvp zone.

Yours,
Markey
 
When the Red Skull is dead leaves and char he drop the whole set and returns to Red Skull.
 
Hey, when will be version 0.3a3 released? It's 8.4 soon and we still haven't trunk version 8.31 :/
 
Hi.I have TFS 8.22(0.3 aplha 1) so i have a question,maybe two :)
1.Can I run this version of TFS with database from TFS 0.3 alpha 1?
2.It will delete my characters/accounts or not? :)
 
Hi.I have TFS 8.22(0.3 aplha 1) so i have a question,maybe two :)
1.Can I run this version of TFS with database from TFS 0.3 alpha 1?
2.It will delete my characters/accounts or not? :)

I think databases is the same, just change *.exe file and data forder.
 
Hi.I have TFS 8.22(0.3 aplha 1) so i have a question,maybe two :)
1.Can I run this version of TFS with database from TFS 0.3 alpha 1?
2.It will delete my characters/accounts or not? :)

Good question, Anyone from developers can answer ? cause I wonder also ;p
 
tarjei said:
Please consider my proposition and please add it to TFS =] ^^
Outfit Quests!

I think it is very usefull

Talaturen can you tell us what you think about that? :)
 
Talaturen can you tell us what you think about that? :)

I'm not Talaturen, but I will answer.
As you can see, slawkens said :
WARNING:
After some tests, I see it isnt working correctly. Player cant wear any outfits in some cases. So. USE AT YOUR OWN RISK, or wait until I'll fix it
So, this code is unstable...

and... read Ryan's post on next page :DDDD
 
@Quest outfits:
Theres already a function you can give outfits with;

Code:
doPlayerAddOutfit(cid, outfitid, addon)

I'm using it myself for brotherhood outfit @ Dreamer's Challenge, removes scroll adds outfit, 500 demonic essences and it adds addon 1 etc.
 
Ok thanks for answers.I'll just make a copy of my database and try it xD
 
@up2

Yea but firs you have to remove outfits that players can't wear it.
I tried several times to use ~add ~remoutfit function but that wasnt worked :/
If you can tell more clear what are you exactly do to make this quests, please? :D
 
@up2

Yea but firs you have to remove outfits that players can't wear it.
I tried several times to use ~add ~remoutfit function but that wasnt worked :/
If you can tell more clear what are you exactly do to make this quests, please? :D

Check outfits.xml at data/XML/outfits.xml, then make sure the outfits that you want people to get by a quest is disabled (1 -> 0).
 
doPlayerAddOutfit(cid, outfitid, addon)
What should I put in addon space? :pP
3?
 
function onUse(cid, item, frompos, item2, topos)


if item.uid == 2354 and item.itemid == 1945 then

doTransformItem(item.uid,item.itemid+1)
doPlayerAddOutfit(cid, 279, 3)
doSendMagicEffect(topos,31)

elseif item.uid == 2354 and item.itemid == 1946 then
doTransformItem(item.uid,item.itemid-1)


else
doPlayerSendCancel(cid,"Sorry, not possible.")
end

return 1

end
And this function doesnt work ... I dont get addon or outfit .. ;/ And even bug in console ...
 
Last edited:
I hope that today finally there will stable release, and for next fix we'll don't need to wait that much :)
 
I have also tried several times with different methods to get the outfit quests working.. Disabling outfits in outifts.xml doesn't work. As the fcuntion doPlayerAddOutfit(cid, outift, addons) doesn't seem to add the outfit. I also tried a onlogin script that removed all outfits yet it didn't work..

1 = just first addon
2 = just second addon
3 = both addons

0 = no addon.

//Massen
 
Last edited:
Status
Not open for further replies.
Back
Top