So after trying to create some organizations with Jakku's Dynamic Organization Filterscript, I got quite a few errors.
Here is what I have so far.
Код:
/*
ALWAYS add your organization BELOW the old one, otherwise the IDs will change = leaders mix up ! ! ! ! !
Syntax for CreateOrganization: CreateOrganization(name[32], skin, Float:x,Float:y,Float:z, wp1,a1,wp2,a2,wp3,a3)
Syntax for CreateOrgVehicle: CreateOrgVehicle(orgname[32], modelid, Float:x,Float:y,Float:z,Float:rotation, color1,color2)
Syntax for CreateOrganizationZone: CreateOrganizationZone(orgname[32], Float:minx,Float:miny,Float:maxx,Float:maxy, color)
*/
//Create ORGS here:
CreateOrganization(NEW_YORK_GOVERNMENT[32], 165, 879.0914, 4622.3052, 5.6044, 0,0,0,0,0,0)
//
//Create ORG VEHICLES here:
CreateOrgVehicle(NEW_YORK_GOVERNMENT[32], 405, 887.9117, 4618.3843, 4.6844, 0.0000, -5.0000, 180.0000, 0, 0);
CreateOrgVehicle(NEW_YORK_GOVERNMENT[32],405,887.9057, 4611.4712, 4.6844,0.0000, -5.0000, 180.0000,0,0);
CreateOrgVehicle(NEW_YORK_GOVERNMENT[32],405,887.9545, 4605.2056, 4.6844,0.0000, -5.0000, 180.0000,0,0);
//
//Create ORG ZONES here:
CreateOrganizationZone(NEW_YORK_GOVERNMENT[32],165,879.0914, 4622.3052,879.0914,0);
//
Any help would be great.