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

[RME]Citizenship Portals

Axtrox

Uninspired Mapper
Joined
Jun 6, 2009
Messages
469
Reaction score
7
Location
Thais o_o
Hello all, I'm starting on a map.... [Like 5 minutes ago lol]
And I need to know how to make that citizenship portal, like in carlin/thais/venore/ab..... etc.... When you touch the port under temple you become citizen of that city... how do I make that? [Easy explaining please... I'm noob and I don't know so much]:confused:

A little preview of the temple so far :peace:
First floor of the temple
temple1stfloor.png


Second floor of the temple [underground]
temple2ndfloor.png


Please help ;D
 
No, you don't add it to the end.. it would be 31020...but I'm not sure how far you can go up, haven't seen the script. But yeah

30021 = townid 1
30022 = townid 2
etc...
Code:
function onStepIn(cid, item, position, fromPosition)
	if(item.actionid > 30020 and item.actionid < [B]30100[/B]) then
		doPlayerSetTown(cid, item.actionid - 30020)
	end
	return TRUE
end
 
I can't seem to find a server that works D; must be 8.5... I always change IP and SQLITE but it would never stop saying it couldn't be found D; I really want to test the map so far
 
Back
Top