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

Windows unwanted intruders.

Carlle

New Member
Joined
Jul 24, 2011
Messages
54
Reaction score
0
I am using TFS Crimson V5

At rookgaard when i am trying to go over a bridge just not far from starting point.


It gives me;

--The tile seems to be protected against unwanted intruders.

Tried with pacc and as GOD (Admin)

But still couldent go over the bridge


Only thing i havent tried with is VIP because i simply dont know where or how to add This vip time.


any happy thing out there willing to help me? :)
 
Open the map and check the properties of the title and see what actionid/unique it got.
And then check the movements for the id and check the script if something is wrong.
I think this should work but I'm not sure...

Only thing i havent tried with is VIP because i simply dont know where or how to add This vip time.
I can't help you with that because i have no clue about VIP time.

I hope you will find it out.
Maybe remove the action/uniqueid of the tile(s) in the map editor? :D

You can also try this. :P
 
it works by remove the action id's etc but i was thinking, can i make this action id that you have to be premium for walking over this bridge? :)

- - - Updated - - -

i am really estimated by your great answer, thanks ! :)
 
Try this, create a new file in actions/scripts called premtile.lua and add this:

Code:
function onStepIn(cid, item, pos, frompos) 
 if isPremium(cid) == FALSE then
doTeleportThing(cid, frompos, TRUE)
  doPlayerSendTextMessage(cid,21, "Only premiums allowed...")
  end
  end

and add in actions.xml

Code:
	<action uniqueid="13000" event="script" value="premtile.lua"/>

and in remere's put the unique id of the tile = 13000
 
Did not seems to work at all i am sorry!: O

The tile seems to be protected against unwanted intruders.


i did exacyly as you said.

Created script, added code to actions and changed action id in remeres. but nothing happend :(
 
Ahh i saw yeah it was my fault! I did find the answer b4 you posted :D

BUt its duplicated ID so now i just have to find a working id hehehe :D Thanks bro

- - - Updated - - -

Lol cant seems to find a working ID :S @Loney

Do you know how to? :O
 
Back
Top