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

Rly Weird BUG

Kedor

New Member
Joined
Mar 3, 2008
Messages
263
Reaction score
0
Location
Poland, Gdynia
When i am playing normally i got that bug

and only 1 player is online ;P i got it when i was testing my servver :S whyyy ;D?
any1 know? i can asnwer all questions :P
 
Last edited:
hmm thats TFS 0.2.10 Mystic Spirit
now i know.. i got room where i tp with magic forcefield.. upstairs.. and when i get there i can choose starting eq.. for knight,pall etc :P you know.. noob eq.. i will add the script of that tp.. maybe will help

Code:
function onStepIn(cid, item, position, fromPosition)
	if item.actionid == 19999 then
		
		if isInArray(upFloorIds, item.itemid) == TRUE then
		fromPosition.y = fromPosition.y + 1
		fromPosition.z = fromPosition.z - 1
		doPlayerSendTextMessage(cid,22,"YOU CAN CHOOSE ONLY ONE SET !!!! BETTER READ THE SIGNS!!!!")
doPlayerSendTextMessage(cid,22,"YOU CAN CHOOSE ONLY ONE SET !!!! BETTER READ THE SIGNS!!!!")
	else
		fromPosition.z = fromPosition.z + 1
doPlayerSendTextMessage(cid,22,"YOU CAN CHOOSE ONLY ONE SET !!!! BETTER READ THE SIGNS!!!!")
doPlayerSendTextMessage(cid,22,"YOU CAN CHOOSE ONLY ONE SET !!!! BETTER READ THE SIGNS!!!!")
	end
	doTeleportThing(cid, fromPosition, FALSE)
doPlayerSendTextMessage(cid,22,"YOU CAN CHOOSE ONLY ONE SET !!!! BETTER READ THE SIGNS!!!!")
doPlayerSendTextMessage(cid,22,"YOU CAN CHOOSE ONLY ONE SET !!!! BETTER READ THE SIGNS!!!!")
	return TRUE
end
end

i know that that message is writted few times but i want ppls to see it and as you can see near my name i am newbie scripter xD
 
Last edited:
Back
Top