House move - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: House move (
/showthread.php?tid=277335)
House move -
Chris_Morrison - 17.08.2011
Hi
I have mod but all houses and gates in the farm there is no FBI HQ,Bank,and 24/7
How to create some?how to move the house?
Thanks!
Re: House move -
Chris_Morrison - 17.08.2011
Anyone?
Re: House move -
KingTurtle - 17.08.2011
Use MTA:SA Map Editor, then use a Converter
If you want to move a house, you need to get new coordinates
Re: House move -
Chris_Morrison - 17.08.2011
i just want move it how i can Find the X Y Z of the house in the mod?
Re: House move -
ElieJabbour - 17.08.2011
Quote:
Originally Posted by Chris_Morrison
i just want move it how i can Find the X Y Z of the house in the mod?
|
Use s obeits, and look at the Tele numbers right down at the s obeits bar : X, Y, Z, [UniversalWord ID]
Re: House move -
KingTurtle - 17.08.2011
Quote:
Originally Posted by ElieJabbour
Use s obeits, and look at the Tele numbers right down at the s obeits bar : X, Y, Z, [UniversalWord ID]
|
or you can use this
pawn Код:
if(strcmp(cmdtext, "/getpos", true) == 0)
{
if(IsPlayerAdmin(playerid))
{
new Float:pos[3], str[100];
GetPlayerPos(playerid, pos[0], pos[1], pos[2]);
format(str, sizeof str, "X: %.2f | Y: .2f | Z: .2f", pos[0], pos[1], pos[2]);
}
else return SendClientMessage(playerid, 0xFFFFFF, "You have no permmission to use this command");
}
Re: House move -
ElieJabbour - 17.08.2011
Quote:
Originally Posted by KingTurtle
or you can use this
pawn Код:
if(strcmp(cmdtext, "/getpos", true) == 0) { if(IsPlayerAdmin(playerid)) { new Float:pos[3], str[100]; GetPlayerPos(playerid, pos[0], pos[1], pos[2]); format(str, sizeof str, "X: %.2f | Y: .2f | Z: .2f", pos[0], pos[1], pos[2]); } else return SendClientMessage(playerid, 0xFFFFFF, "You have no permmission to use this command"); }
|
Why use this when you got s obeits ?-.-, Srsly i am 100% sure that every person who plays samp, has s obeits installed, lol.
Re: House move -
dowster - 17.08.2011
Quote:
Originally Posted by ElieJabbour
Why use this when you got s obeits ?-.-, Srsly i am 100% sure that every person who plays samp, has s obeits installed, lol.
|
not me :P i just have a textdraw that shows the x y z Interior, and VW. and when i hit fire it saves it to a file, formatted so i can copy and paste into an array. Laziness FTW