SA-MP Forums Archive
Organisations Errors. - 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: Organisations Errors. (/showthread.php?tid=380188)



Organisations Errors. - MrPlatinum - 24.09.2012

Hey all!,

I'm currently trying to get my head around DynamicOrganizations by Jakku, but i have seen to en-counted some issues (below) could you please help me with it??

Greatly appreciated.




Код HTML:
C:\Users\Brandon\Desktop\SERVER\filterscripts\DynamicOrganizations.pwn(127) : warning 213: tag mismatch
C:\Users\Brandon\Desktop\SERVER\filterscripts\DynamicOrganizations.pwn(127) : warning 202: number of arguments does not match definition
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


2 Warnings.

Код HTML:
//Create ORGS here:
CreateOrganization("MileHighClub",1536.398193,Float:1450.923950,12.940596);

//Create ORG VEHICLES here:
	
//
	
//Create ORG ZONES here:

//
BTW Line (123) is ...
Код HTML:
CreateOrganization("MileHighClub",1536.398193,Float:1450.923950,12.940596);



Re: Organisations Errors. - Riddy - 24.09.2012

Show us the CreateOrganisation code.


Re: Organisations Errors. - MrPlatinum - 24.09.2012

I'm sure this is what you're talking about.

Код HTML:
Syntax for CreateOrganization: CreateOrganization(name[32], skin, Float:x,Float:y,Float:z, wp1,a1,wp2,a2,wp3,a3)



Re: Organisations Errors. - MrPlatinum - 24.09.2012

Problem FIXED

Change this,
Код HTML:
CreateOrganization("MileHighClub",1536.398193,Float:1450.923950,12.940596);
To this,

Код HTML:
CreateOrganization("MileHighClub", 6,1536.398193,Float:1450.923950,12.940596);


p.s sorry for double post, didn't mean to.