15.06.2014, 07:44
I suppose you've made your map with JerneJL's editor, am I right? Anyway, If you haven't, you can directly convert your MTA:SA map format to SA:MP map format with Delux GTA Map Converter. You will also need streamer.inc by Incognito.
You're now able to add your map using this structure:
You're now able to add your map using this structure:
pawn Код:
public OnFilterscriptInit()
{
CreateDynamicObjectEx(modelid, Float:x, Float:y, Float:z, Float:rx, Float:ry, Float:rz, Float:drawdistance = 0.0, Float:streamdistance = 200.0, worlds[] = { -1 }, interiors[] = { -1 }, players[] = { -1 }, maxworlds = sizeof worlds, maxinteriors = sizeof interiors, maxplayers = sizeof players);
//repeat the above for each and every object
return 1;
}