SA-MP Forums Archive
No errors but bug please help.. - 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: No errors but bug please help.. (/showthread.php?tid=375522)



No errors but bug please help.. - RyanPetersons - 07.09.2012

Code:dini_Create(path);
dini_IntSet(path, "Float:X %d", Float:X);
dini_IntSet(path, "Float:Rotation: %d", Float:rotation);
dini_IntSet(path, "Float:Z %d", Float:Z);
dini_IntSet(path, "Float:Y %d", Float:Y);

Note: It works at all, even it saves
but the result of it in the .ini file is wrong.
it is this, find this problem and tell me and fix it if you can.

Result:Float:X %d=1092826463
Float:Rotation: %d=0
Float:Z %d=1157603305
Float:Y %d=1151943800
Float:rotation %d=0


Re: No errors but bug please help.. - Jeffry - 07.09.2012

pawn Код:
Code:dini_Create(path);
dini_FloatSet(path, "Float:X", Float:X);
dini_FloatSet(path, "Float:Rotation", Float:rotation);
dini_FloatSet(path, "Float:Z", Float:Z);
dini_FloatSet(path, "Float:Y", Float:Y);



Re: No errors but bug please help.. - RyanPetersons - 07.09.2012

no but there is no "." in the floats.


Re: No errors but bug please help.. - RyanPetersons - 07.09.2012

These are not the full lines lol, these are half lines, but i think the mistake done is in these lines.


Re: No errors but bug please help.. - RyanPetersons - 07.09.2012

I deleted that code before because that was not working, but can you help me with that thing?
Make me a jetsaving system, when we go off it destroys and when we spawn that createsvehicle
and the vehicle spawns at there last Float:X,Float:Y,Float:Z,Float:rotation
and if you think DestroyVehicle needs a vehicle id
so, dont write there a vehicle id
write there vipcar.
and at CreateVehicle write, vipcar = CreateVehicle
Make me that pleaze, for more questions ask me.


Re: No errors but bug please help.. - RyanPetersons - 07.09.2012

I fixed the results bug.
but now when i spawn
i couldn't see the vehicle
OnPlayerSpawnCode:

new path[120],pname[MAX_PLAYER_NAME];
GetPlayerName(playerid, pname, sizeof(pname));
format(path, sizeof(path), "/jets/%s.ini", pname);
vipcar = CreateVehicle(522,dini_Int(path, "Float:Z"),dini_Int(path, "Float:Y"),dini_Int(path, "Float:Z"),dini_Int(path, "Float:rotation"),1,1,1);

It saves the Float:X,Float:Y,Float:Z,Float:rotation when we disconnect.
I fixed that
but, when we spawn then i cant see the vehicle 522, if you know what mistake i did in OnPlayerSpawn code
then fix it pleaze?


Re: No errors but bug please help.. - Jeffry - 07.09.2012

pawn Код:
vipcar = CreateVehicle(522,dini_Float(path, "Float:Z"),dini_Float(path, "Float:Y"),dini_Float(path, "Float:Z"),dini_Float(path, "Float:rotation"),1,1,1);
If this is not working, then please show thw full saving code, and it's result.


Re: No errors but bug please help.. - RyanPetersons - 08.09.2012

Just make me a jet saving system, when i go off it destroys and saves it position into notepad and everything
when i become online it should be spawn at his last position.