SA-MP Forums Archive
SA-MP 0.3c RC client/server (Now released) - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: SA-MP 0.3c RC client/server (Now released) (/showthread.php?tid=194031)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17


Re: SA-MP 0.3c RC client/server (RC3) - MasterB - 06.12.2010

im having this issue when i attach a car to the tow truck this is really bad synced and on older versions this wasnt? is this familiar?


Re: SA-MP 0.3c RC client/server (RC3) - Manteiga01 - 06.12.2010

Nice!!!!


Re: SA-MP 0.3c RC client/server (RC3) - Vandooz - 07.12.2010

Quote:
Originally Posted by Auxxx
Посмотреть сообщение
Final version? I believe you mean public version, because SA-MP will be continued to develope. There is no "final" version coming..
Smartass :]


Re: SA-MP 0.3c RC client/server (RC3) - Finn - 07.12.2010

Quote:
Originally Posted by Auxxx
Посмотреть сообщение
Final version? I believe you mean public version, because SA-MP will be continued to develope. There is no "final" version coming..
How do you know?

I think it said in the main page at some point in the past that 0.2.5 (aka 0.3) will be the last version of SA-MP.


Re: SA-MP 0.3c RC client/server (RC3) - hack4ever - 07.12.2010

Quote:
Originally Posted by Sergei
Посмотреть сообщение
I have just got an idea. We need army helmet object of course!
I agree with this suggestion

Btw, can add lamp for flashlight ? it will be good for flashlight with lamp on

Sorry for my bad english ~__~


Re: SA-MP 0.3c RC client/server (RC3) - schillow - 07.12.2010

Hey,
can somebody told me how can I attach more objects to player?
for example: I want to attach to player sunglasses and hat
I tried this:
Quote:

if (strcmp("/ww", cmdtext, true) == 0)
{

SetPlayerAttachedObject(playerid,0,18947,2, 0.13,0.015,0.003, 0.0,0.0,0.0, 1.0,1.0,1.0);
SetPlayerAttachedObject(playerid,0,19022,2,0.1,0.0 4,0.0,60.0,85.0,25.0,1.0,1.0,1.0);
return 1;
}

but it doesn't attach both objects, only one of them


Re: SA-MP 0.3c RC client/server (RC3-3) - piohh - 08.12.2010

0.3c RC3-3 is'nt RC3-3...
my client says is 0.3c RC3-2 ^^


Re: SA-MP 0.3c RC client/server (RC3-3) - alanhutch - 08.12.2010

FUCK!!!!
NSIS ERROR?!?!?!??


Re: SA-MP 0.3c RC client/server (RC3-3) - DSK_Vyorel - 08.12.2010

Cool!

But when the final version will be relaised?


Respuesta: SA-MP 0.3c RC client/server (RC3-3) - OwlCity - 08.12.2010

There isn't an official date.


Re: SA-MP 0.3c RC client/server (RC3-3) - StreetGT - 08.12.2010

Quote:
Originally Posted by piohh
Посмотреть сообщение
0.3c RC3-3 is'nt RC3-3...
my client says is 0.3c RC3-2 ^^
my client say the same. Maybe wrong link ^^


Re: SA-MP 0.3c RC client/server (RC3-3) - The_Gangstas - 08.12.2010

it seems to be diff now as its a new download on ****** chrome, download it again.


Re: SA-MP 0.3c RC client/server (RC3-3) - leong124 - 09.12.2010

Great job, Kalcor. You've successfully fixed the colour embedding bug


Re: SA-MP 0.3c RC client/server (RC3) - Damian - 09.12.2010

Quote:
Originally Posted by RobinOwnz
Посмотреть сообщение
Does somebody got a AttachObjectToVehicle-'creator'
Whipped something up right quick:
pawn Код:
forward AttachObjectModelToVehicle  ( modelid, vehicleid, Float:fOffsetX, Float:fOffsetY, Float:fOffsetZ, Float:fRotX, Float:fRotY, Float:RotZ);

new Veh_Object_IDs[MAX_VEHICLES],
    Veh_Models_IDs[MAX_VEHICLES];

stock IsObjectAttachedToVehicle( vehicleid )
{
    return Veh_Object_IDs[vehicleid];
}

stock GetVehicleObjectModel( vehicleid )
{
    return Veh_Models_IDs[vehicleid];
}

stock RemoveObjectFromVehicle( vehicleid )
{
    new obj_id = IsObjectAttachedToVehicle( vehicleid );
    if( obj_id )
    {
        DestroyObject(obj_id);
        Veh_Object_IDs[vehicleid] = 0;
        Veh_Models_IDs[vehicleid] = 0;
    }
    return 1;
}

public AttachObjectModelToVehicle( modelid, vehicleid, Float:fOffsetX, Float:fOffsetY, Float:fOffsetZ, Float:fRotX, Float:fRotY, Float:RotZ)
{
    RemoveObjectFromVehicle( vehicleid );
   
    Veh_Object_IDs[vehicleid] = CreateObject(modelid, fOffsetX, fOffsetY, fOffsetZ, fRotX, fRotY, RotZ);
    Veh_Models_IDs[vehicleid] = modelid;
    AttachObjectToVehicle(Veh_Object_IDs[vehicleid], vehicleid, fOffsetX, fOffsetY, fOffsetZ, fRotX, fRotY, RotZ);
    return 1;
}
Use RemoveObjectFromVehicle( vehicleid ) in the vehicledeath callback as well.


Re: SA-MP 0.3c RC client/server (RC3-3) - Pyenix - 09.12.2010

HELP pls


Re: SA-MP 0.3c RC client/server (RC3-3) - dengli - 09.12.2010

- Attemping to fix colour embedding in unicode strings again.

Now colour embedding in unicode strings works fine,thanks for the update .


Re: SA-MP 0.3c RC client/server (RC3-3) - wups - 09.12.2010

When is the approximate release date?


Re: SA-MP 0.3c RC client/server (RC3-3) - Slice - 09.12.2010

When it rains on a sunny day.


Re: SA-MP 0.3c RC client/server (RC3-3) - Tomejus - 09.12.2010

Quote:
Originally Posted by Slice
Посмотреть сообщение
When it rains on a sunny day.
Why everyone didn't get that release date are not released yet?


Re: SA-MP 0.3c RC client/server (RC3-3) - wups - 09.12.2010

Quote:
Originally Posted by Tomejus
Посмотреть сообщение
Why everyone didn't get that release date are not released yet?
I thought maybe that info is leaked from somewhere