Errors In SaveBiz - 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: Errors In SaveBiz (
/showthread.php?tid=451348)
Errors In SaveBiz -
San1 - 16.07.2013
pawn Код:
forward SaveBiz(bizid);
public SaveBiz(bizid)
{
INI_WriteFloat("xCoord",BizInfo[bizid][ex]);// Errors
INI_WriteFloat("yCoord",BizInfo[bizid][ey]);
INI_WriteFloat("zCoord",BizInfo[bizid][ez]);
INI_WriteFloat("ixCoord",BizInfo[bizid][ix]);
INI_WriteFloat("iyCoord",BizInfo[bizid][iy]);
INI_WriteFloat("izCoord",BizInfo[bizid][iz]);
INI_WriteInt("Products",BizInfo[bizid][Products]);
INI_WriteInt("Type",BizInfo[bizid][Type]);
INI_WriteInt("Interior",BizInfo[bizid][Interior]);
INI_WriteInt("Vault",BizInfo[bizid][Vault]);
INI_WriteInt("Owned",BizInfo[bizid][Owned]);
INI_WriteString("Owner",BizInfo[bizid][Owner]);// End Of Errors
return 1;
}
ERRORS:
Код:
C:\Documents and Settings\Adrian\My Documents\Samp Servers\World Wide Roleplay\gamemodes\WW-RP.pwn(123) : error 035: argument type mismatch (argument 1)
C:\Documents and Settings\Adrian\My Documents\Samp Servers\World Wide Roleplay\gamemodes\WW-RP.pwn(124) : error 035: argument type mismatch (argument 1)
C:\Documents and Settings\Adrian\My Documents\Samp Servers\World Wide Roleplay\gamemodes\WW-RP.pwn(125) : error 035: argument type mismatch (argument 1)
C:\Documents and Settings\Adrian\My Documents\Samp Servers\World Wide Roleplay\gamemodes\WW-RP.pwn(126) : error 035: argument type mismatch (argument 1)
C:\Documents and Settings\Adrian\My Documents\Samp Servers\World Wide Roleplay\gamemodes\WW-RP.pwn(127) : error 035: argument type mismatch (argument 1)
C:\Documents and Settings\Adrian\My Documents\Samp Servers\World Wide Roleplay\gamemodes\WW-RP.pwn(128) : error 035: argument type mismatch (argument 1)
C:\Documents and Settings\Adrian\My Documents\Samp Servers\World Wide Roleplay\gamemodes\WW-RP.pwn(129) : error 035: argument type mismatch (argument 1)
C:\Documents and Settings\Adrian\My Documents\Samp Servers\World Wide Roleplay\gamemodes\WW-RP.pwn(130) : error 035: argument type mismatch (argument 1)
C:\Documents and Settings\Adrian\My Documents\Samp Servers\World Wide Roleplay\gamemodes\WW-RP.pwn(131) : error 035: argument type mismatch (argument 1)
C:\Documents and Settings\Adrian\My Documents\Samp Servers\World Wide Roleplay\gamemodes\WW-RP.pwn(132) : error 035: argument type mismatch (argument 1)
C:\Documents and Settings\Adrian\My Documents\Samp Servers\World Wide Roleplay\gamemodes\WW-RP.pwn(133) : error 035: argument type mismatch (argument 1)
C:\Documents and Settings\Adrian\My Documents\Samp Servers\World Wide Roleplay\gamemodes\WW-RP.pwn(134) : error 035: argument type mismatch (argument 1)
Re: Errors In SaveBiz -
Kitten - 16.07.2013
Read ****** Topic on y_ini again and read the error It'd help alot.
https://sampforum.blast.hk/showthread.php?tid=175565
INI_WriteFloat("xCoord",BizInfo[bizid][ex]);
Where is that saving to for example it'd be something like
INI_WriteFloat(myfile, "xCoord",BizInfo[bizid][ex]);
Make sure you open the file before continuing to edit the file.