Where i put .map files? - 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)
+--- Thread: Where i put .map files? (
/showthread.php?tid=251179)
Where i put .map files? -
KaneSky - 25.04.2011
i have a [MAP] file named LosSantos.Map where i need to put this to work?Thx for all who try to help me!
Re: Where i put .map files? -
Lorenc_ - 26.04.2011
I could convert it for you but try doing it you're self..
www.convertffs.com
Do what in says and follow its instructions :3
Re: Where i put .map files? -
KaneSky - 26.04.2011
now i have an error
D:\Samp\gamemodes\larp.pwn(83483) : error 021: symbol already defined: "CreateObject"
what to do?
Re: Where i put .map files? -
wijnkamp1 - 26.04.2011
Quote:
Originally Posted by KaneSky
larp.pwn
|
*sighs* Obvious Raven's RP is obvious.
Re: Where i put .map files? -
tsgh mike - 27.11.2011
Quote:
Originally Posted by wijnkamp1
*sighs* Obvious Raven's RP is obvious.
|
So what, at least he is adding shit instead of just using and leeching it.
Re: Where i put .map files? -
Kostas' - 27.11.2011
Where did you put it. You should here.
pawn Код:
public OnGameModeInit()
{
CreateObject(modelid, Float:X, Float:Y, Float:Z, Float:rX, Float:rY, Float:rZ, Float:DrawDistance);
return 1;
}
However, if you are using Incognito's Streamer, it should be like this.
pawn Код:
// At The Top
#include <streamer>
public OnGameModeInit()
{
CreateDynamicObject(modelid, Float:X, Float:Y, Float:Z, Float:rX, Float:rY, Float:rZ, Float:DrawDistance);
return 1;
}