Oggi è 28/03/2024, 12:29

Tutti gli orari sono UTC + 1 ora [ ora legale ]





 Pagina 1 di 8 [ 151 messaggi ] 

Vai alla pagina :: 1, 2, 3, 4, 5 ... 8  Prossima »
  Apri un nuovo argomento Rispondi all’argomento

  Stampa pagina

Autore Messaggio
 Oggetto del messaggio: Rilasciato SA-MP 0.3c RC7
MessaggioInviato: 28/11/2010, 15:36 
Avatar utente
Administrator

Iscritto il: 02/09/2010
Messaggi: 1349
Località: Agrigento
Favourite GTA: Vice City
PlayStation Network: Giovanni94m
Xfire: Giovanni94m
Steam: Giovanni94m

Karma
10


Non connesso
Immagine


SA-MP 0.3c RC

We are releasing a scripting (player limited) version of SA-MP 0.3c early, so that server owners and scripters can start updating their scripts and making any changes needed for the next SA-MP version. A full release of 0.3c is not expected for at least a few more weeks.

SA-MP 0.3c is mainly a feature update. Bugs will be fixed throughout the RC, so they can be reported. Higher priority will be given to bugs in any of the new features.

Updates

SA-MP 0.3c RC is now in feature lockdown. Only critical bugs will be fixed.

0.3c RC7 client/server update

- Fixed problems with "car parking" other players and also problems exiting a moving vehicle.
- The samp.img/.ide/custom.img files etc. have been moved from the \models folder in to the \SAMP folder. The old img files will be removed when you install RC7, or when you uninstall any previous RC.
- Some additional netcode security updates have been added.

0.3c RC6 client/server update

- Fixed a syncing problem when players were surfing moving 'player' objects.
- More improvements to the vehicle and object surfing.
- Fixed a rendering problem while inside the LS Office floors building.
- Some other minor crash fixes.

0.3c RC5 client/server update

- Improved player sync on moving objects (object surfing). This works only on global objects, not player objects.
- Added support for the "Test" button in Jernej's [url="http://forum.sa-mp.com/showthread.php?t=139409"]Map Editor[/url].
- Includes many new objects including a virtual map of San Andreas and each city.
- A texture filtering problem on the samp.img models has been fixed.
- The LS office floors building fix (collision etc) is now applied to San Andreas by default - no need for the external object.

0.3c RC4-2-2 very minor client update

- This fixes some missing models in the samp.img like the '?' NoModelFile. The actual client is exactly the same as RC4-2.

0.3c RC4-2 optional client update

- You can now driveby as a passenger with any bullet-type weapon. This will only work for RC4-2 clients.
- SetPlayerArmedWeapon now works when the player is in a vehicle.

0.3c RC4 client/server update

- The server is now slot unlimited (500 players)
- RC4 includes the latest version of the samp.img models.
- Changes to ShowPlayerDialog: If button2 is a 0 length string, only 1 button will be displayed.

0.3c RC3-3 optional client update

- Fix for deleting MAPICON_LOCAL_CHECKPOINT map icons.
- Changed the colour of the default checkpoint marker back to red.
- Vehicle model loading changes have been reverted since it's causing some rendering problems.
- Attemping to fix colour embedding in unicode strings again.

0.3c RC3 client/server update

- The SA-MP weapon font is now loaded from the SA folder. This should fix the problem with missing death icons.
- Fixed a problem using menus in vehicles with the engine off.
- Fixed objects disappearing when underground.
- Some further tweaks to the vehicle model loading.

SetPlayerMapIcon now has a 'style' parameter:

Codice:
#define MAPICON_LOCAL           0 // displays in the player's local area
#define MAPICON_GLOBAL           1 // displays always
#define MAPICON_LOCAL_CHECKPOINT  2 // displays in the player's local area and has a checkpoint marker
#define MAPICON_GLOBAL_CHECKPOINT 3 // displays always and has a checkpoint marker

native SetPlayerMapIcon(playerid, iconid, Float:x, Float:y, Float:z, markertype, color, style = MAPICON_LOCAL);


The style allows you to set whether the radar icon is always shown, no matter where the player is on the map. You can also set the style to include a small checkpoint marker. This checkpoint marker is for display only and won't trigger OnPlayerEnterCheckpoint. If the markertype is 0 (normal square marker) the 'color' parameter can now be an RGBA colour.

0.3c RC2-2 optional client update

- Based on feedback, the vehicle engine control has been modified slightly. You can still steer the vehicle with the engine off. The tail lights won't come on when the engine is off.
- Increased the number of preloaded vehicle models which will improve the vehicle model loading lag for servers that use more than 100 vehicle models.
- Attempts to fix a startup crash right after the loading screen.

0.3c RC2 client/server update

- This release attempts to fix some of the issues with text colour embedding, like misaligned colours and interferring with character encoding. If there are still problems, please report them.
- The server is now 50 slot.
- The 0.3c RC server list is now online.
- We are monitoring client crash reports so please do report them in the crash window or paste the report in this forum section.

0.3c RC1-2 client update

- Fixes a crash with player attached objects if you are using the GTA SA EU version.

SA-MP 0.3c RC1 release information is below

Important changes needed to make 0.3b scripts work with 0.3c

The functions SetPlayerHoldingObject, IsPlayerHoldingObject and StopPlayerHoldingObject have been removed. These functions were limited in the fact that they could only attach 1 object to each player. New functions have been added which allow you to attach up to 5 objects to each player.

Codice:
#define MAX_PLAYER_ATTACHED_OBJECTS 5 // This is the number of attached indexes available ie 5 = 0-4

native SetPlayerAttachedObject(playerid, index, modelid, bone, Float:fOffsetX = 0.0, Float:fOffsetY = 0.0, Float:fOffsetZ = 0.0, Float:fRotX = 0.0, Float:fRotY = 0.0, Float:fRotZ = 0.0, Float:fScaleX = 1.0, Float:fScaleY = 1.0, Float:fScaleZ = 1.0);
native RemovePlayerAttachedObject(playerid, index);
native IsPlayerAttachedObjectSlotUsed(playerid, index);


If you have a lot of script bound to SetPlayerHoldingObject, these defines below might be useful. You can add them to the top of your pwn file after a_samp.inc is included. These will use player attached object slot number 4.

Codice:
#define SetPlayerHoldingObject(%1,%2,%3,%4,%5,%6,%7,%8,%9) SetPlayerAttachedObject(%1,MAX_PLAYER_ATTACHED_OBJECTS-1,%2,%3,%4,%5,%6,%7,%8,%9)
#define StopPlayerHoldingObject(%1) RemovePlayerAttachedObject(%1,MAX_PLAYER_ATTACHED_OBJECTS-1)
#define IsPlayerHoldingObject(%1) IsPlayerAttachedObjectSlotUsed(%1,MAX_PLAYER_ATTACHED_OBJECTS-1)


Colour embedding:

You can use {RRGGBB} (hex) strings embedded in text to change the text colour. This works in the chat window, in dialogs, in 3D text labels, and in numberplates. Colour codes are automatically filtered with () in player chat text. The only exception to the colour code filtering is input dialog response text.

The return of SetVehicleNumberplate()

While the function name is the same, it works differently. All cars now have a generic numberplate "XYZR 000". The numberplate will only change if SetVehicleNumberPlate() is used. The string limit for a numberplate is 32 characters, which gives you enough space for an 8 character numberplate plus some additional room for colour codes. Please use this function with care and don't go assigning custom numberplates to vehicles that don't have plates (like planes/boats etc), as this would result in unneeded processing time on the client.

SetVehicleParamsEx()

New extended parameters for vehicles that allow you to change the state of the
vehicle engine, lights, alarm, doors locked, bonnet open/closed, boot open/closed, objective status.
These don't have to be set for each player anymore like SetVehicleParamsForPlayer(). They're
automatically replicated to all players.

Codice:
#define VEHICLE_PARAMS_UNSET   -1
#define VEHICLE_PARAMS_OFF   0
#define VEHICLE_PARAMS_ON   1

native SetVehicleParamsEx(vehicleid, engine, lights, alarm, doors, bonnet, boot, objective);
native GetVehicleParamsEx(vehicleid, &engine, &lights, &alarm, &doors, &bonnet, &boot, &objective);


Example:

Codice:
new engine,lights,alarm,doors,bonnet,boot,objective;

   if(strcmp(cmd, "/startengine",true) == 0) {
        new vid = GetPlayerVehicleID(playerid);
        if(vid != INVALID_VEHICLE_ID) {
            GetVehicleParamsEx(vid,engine,lights,alarm,doors,bonnet,boot,objective);
            SetVehicleParamsEx(vid,VEHICLE_PARAMS_ON,lights,alarm,doors,bonnet,boot,objective);
      }
       return 1;
   }
   if(strcmp(cmd, "/stopengine",true) == 0) {
        new vid = GetPlayerVehicleID(playerid);
        if(vid != INVALID_VEHICLE_ID) {
            GetVehicleParamsEx(vid,engine,lights,alarm,doors,bonnet,boot,objective);
            SetVehicleParamsEx(vid,VEHICLE_PARAMS_OFF,lights,alarm,doors,bonnet,boot,objective);
      }
       return 1;
   }


You can also write wrapper functions around this function e.g.

Codice:
SetVehicleEngineOn(vehicleid)
{   
        new engine,lights,alarm,doors,bonnet,boot,objective;
        GetVehicleParamsEx(vehicleid,engine,lights,alarm,doors,bonnet,boot,objective);
        SetVehicleParamsEx(vehicleid,VEHICLE_PARAMS_ON,lights,alarm,doors,bonnet,boot,objective);
}


ManualVehicleEngineAndLights()

ManualVehicleEngineAndLights() can be used in OnGameModeInit(), or somewhere before players connect. It will instruct all clients that the server controls both the vehicle engines and the lights. That means the engine will not automatically start when the player enters the vehicle and the lights will not automatically come on at night. This is useful for role playing servers where the player might manually have to start/stop the engine. The behaviour of SetVehicleParamEx with manual engine/lights control is different depending on whether manual (server) engine and lights control is enabled.

AttachObjectToVehicle

Hopefully this one is self-explanatory.

New objects, particle objects, samp.img, samp.ide

There are a lot of things that need to be documented regarding this. Some useful information should appear on the SA-MP wiki within the next few weeks. To give a brief overview, thanks to the SA-MP beta team, SA-MP now includes hundreds of new objects, including particle objects. These objects use model/object IDs that are not normally available in San Andreas. A full list of IDs can be found in your GTA SA folder under models\samp.ide after you install any version of SA-MP 0.3c.

0.3c files

Latest:

0.3c-RC7 Client Installer
0.3c-RC7 linux Server
0.3c-RC7 Windows Server/Scripting

_________________
Immagine
Immagine
Immagine
Immagine
Immagine
Immagine
Immagine


Top
 E-mail  
 

 Oggetto del messaggio: Re: Rilasciato SA-MP 0.3c RC1
MessaggioInviato: 28/11/2010, 15:53 
Avatar utente
Administrator

Iscritto il: 02/09/2010
Messaggi: 282
Località: Cesena
Favourite GTA: Ballad of Gay Tony
PlayStation Network: Nessuno
Xbox Live: Nessuno
Xfire: ske92

Karma
10


Non connesso
Giovanni94m ha scritto:
We are releasing a scripting (player limited) version of SA-MP 0.3c early, so that server owners and scripters can start updating their scripts and making any changes needed for the next SA-MP version


:sxc: Danno agli scripters il tempo per aggiornarsi, grande idea questo rilascio anticipato.

_________________


Top
  
 
 Oggetto del messaggio: Re: Rilasciato SA-MP 0.3c RC1
MessaggioInviato: 28/11/2010, 15:55 
Avatar utente
Administrator

Iscritto il: 02/09/2010
Messaggi: 1349
Località: Agrigento
Favourite GTA: Vice City
PlayStation Network: Giovanni94m
Xfire: Giovanni94m
Steam: Giovanni94m

Karma
10


Non connesso
Non è la prima volta :asd: per sa-mp 0.3b hanno fatto stessa cosa.

_________________
Immagine
Immagine
Immagine
Immagine
Immagine
Immagine
Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: Rilasciato SA-MP 0.3c RC1
MessaggioInviato: 28/11/2010, 16:15 
Avatar utente
Utente

Iscritto il: 07/11/2010
Messaggi: 250
Località: Sardegna
Favourite GTA: Vice City

Karma
0


Non connesso
Bene! :embe:

_________________
Immagine

Immagine

Immagine

Immagine

Immagine

Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: Rilasciato SA-MP 0.3c RC1
MessaggioInviato: 28/11/2010, 16:54 
Avatar utente
Utente

Iscritto il: 06/11/2010
Messaggi: 148
Località: Nettuno (RM)
Favourite GTA: San Andreas
Xbox Live: Forse via PM lo dico
Xfire: mrobscure95

Karma
-1


Non connesso
bene

_________________
Immagine
Immagine
Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: Rilasciato SA-MP 0.3c RC1
MessaggioInviato: 28/11/2010, 16:55 
Utente

Iscritto il: 26/11/2010
Messaggi: 28

Karma
0


Non connesso
Fantastica, ho appena provato alcune nuove funzioni. Direi che gli scripter rpniani saranno facilitati dalle nuove funzioni inserite (sistema targhe, allarme, engine ecc ecc). :embe:


Top
 E-mail  
 
 Oggetto del messaggio: Re: Rilasciato SA-MP 0.3c RC1
MessaggioInviato: 28/11/2010, 17:03 
Avatar utente
Administrator

Iscritto il: 02/09/2010
Messaggi: 1349
Località: Agrigento
Favourite GTA: Vice City
PlayStation Network: Giovanni94m
Xfire: Giovanni94m
Steam: Giovanni94m

Karma
10


Non connesso
Mi aspettavo un po di più a dir la verità :ghfuma:

_________________
Immagine
Immagine
Immagine
Immagine
Immagine
Immagine
Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: Rilasciato SA-MP 0.3c RC1
MessaggioInviato: 28/11/2010, 17:08 
Utente

Iscritto il: 26/11/2010
Messaggi: 28

Karma
0


Non connesso
arriverà arriverà... :hideme:


Top
 E-mail  
 
 Oggetto del messaggio: Re: Rilasciato SA-MP 0.3c RC1
MessaggioInviato: 28/11/2010, 17:15 
Avatar utente
Moderatore

Iscritto il: 28/10/2010
Messaggi: 919
Località: Veduggio con Colzano (Milano-Monza)
Favourite GTA: San Andreas
PlayStation Network: Nessuno
Xbox Live: Nessuno
Xfire: barle97

Karma
1


Non connesso
Speriamo.. Intanto vedo a gustarmi con ii particles ç_ç

_________________
disasm 0xFFFF00 1: LE HANTENNE DEL RUTER SI MVONO DA SL!11!1!!1
[EPD]Giovanni94m: AHSUAHSAUSHAUSAHSAU
disasm 0xFFFF00 1: bella questa asd

[EPD]Giovanni94m: io non riesco a trovare un gioco che ci giocavo su ps1
[EPD]Giovanni94m: non ricordo il nome
[EPD]Giovanni94m: era un omino rosa
[EPD]Giovanni94m: ...
[BCD]barle_the_king: forse cercavi omino bianco [cit. google]
[BCD]barle_the_king: auhsahusuha
[EPD]Giovanni94m: no ahsau
[BCD]barle_the_king: firma duhahudshue

Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: Rilasciato SA-MP 0.3c RC1
MessaggioInviato: 28/11/2010, 17:29 
Banned

Iscritto il: 31/10/2010
Messaggi: 1363
Località: Sicilia
Favourite GTA: San Andreas
Xfire: peppinux

Karma
-10


Non connesso
Bene! Per favore però traduci :ghfuma:

OT: @Cristiano_Ronaldo: Quando posso mi collego su MSN così ne parliamo... :asd:


Top
 E-mail  
 
 Oggetto del messaggio: Re: Rilasciato SA-MP 0.3c RC1
MessaggioInviato: 28/11/2010, 18:04 
Utente

Iscritto il: 06/11/2010
Messaggi: 198
Favourite GTA: San Andreas

Karma
1


Non connesso
Tutte funzioni utilissime D:

_________________
https://t.me/pump_upp


Top
 E-mail  
 
 Oggetto del messaggio: Re: Rilasciato SA-MP 0.3c RC1
MessaggioInviato: 28/11/2010, 18:32 
Utente

Iscritto il: 06/11/2010
Messaggi: 114
Xfire: revolution96

Karma
0


Non connesso
Speriamo per nuove funzioni


Top
 E-mail  
 
 Oggetto del messaggio: Re: Rilasciato SA-MP 0.3c RC1
MessaggioInviato: 28/11/2010, 19:53 
Avatar utente
Utente

Iscritto il: 31/10/2010
Messaggi: 901
Località: Universo - Via Lattea - Sistema Solare - Pianeta Terra - Europa - Italia - Sicilia - Grammichele(CT)
Favourite GTA: San Andreas
Xfire: Privato

Karma
2


Non connesso
vi posto tutti i nuovi objects per la 0.3c:

http://wiki.sa-mp.com/wiki/Objects_0.3c

_________________
Immagine


I Miei Filterscript Per Sa-Mp

Rampone System By me and Mik_Teck
Autovelox System By me and Mik_Teck
Metro System By me
pLaserPointer By me

Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: Rilasciato SA-MP 0.3c RC1
MessaggioInviato: 28/11/2010, 20:57 
Avatar utente
Administrator

Iscritto il: 02/09/2010
Messaggi: 1349
Località: Agrigento
Favourite GTA: Vice City
PlayStation Network: Giovanni94m
Xfire: Giovanni94m
Steam: Giovanni94m

Karma
10


Non connesso
Rilasciato aggiornamento 0.3c-RC1-2 Client
Link nel topic aggiornato ;)

_________________
Immagine
Immagine
Immagine
Immagine
Immagine
Immagine
Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: Rilasciato SA-MP 0.3c RC1
MessaggioInviato: 28/11/2010, 21:23 
Avatar utente
Utente

Iscritto il: 07/11/2010
Messaggi: 250
Località: Sardegna
Favourite GTA: Vice City

Karma
0


Non connesso
Giovanni potresti elencarmi i miglioramenti al client? Sembra uguale :what:

_________________
Immagine

Immagine

Immagine

Immagine

Immagine

Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: Rilasciato SA-MP 0.3c RC1
MessaggioInviato: 28/11/2010, 22:39 
Avatar utente
Utente

Iscritto il: 31/10/2010
Messaggi: 901
Località: Universo - Via Lattea - Sistema Solare - Pianeta Terra - Europa - Italia - Sicilia - Grammichele(CT)
Favourite GTA: San Andreas
Xfire: Privato

Karma
2


Non connesso
è stato fixato il bug che faceva crashare Samp (con la versione Europea di Gta) quando si usava il SetPlayerHoldingObject

_________________
Immagine


I Miei Filterscript Per Sa-Mp

Rampone System By me and Mik_Teck
Autovelox System By me and Mik_Teck
Metro System By me
pLaserPointer By me

Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: Rilasciato SA-MP 0.3c RC1
MessaggioInviato: 28/11/2010, 22:42 
Avatar utente
Administrator

Iscritto il: 02/09/2010
Messaggi: 1349
Località: Agrigento
Favourite GTA: Vice City
PlayStation Network: Giovanni94m
Xfire: Giovanni94m
Steam: Giovanni94m

Karma
10


Non connesso
Cristiano Ronaldo ha scritto:
Giovanni potresti elencarmi i miglioramenti al client? Sembra uguale :what:


Se parli della rc1-2 è stato fixato un crash che si verificava con l'uso degli oggetti attaccati al player solo per le versioni EU.

In generale non ci sono grandi cambiamenti ma semplicemente sono state aggiunge nuove funzioni.

EDIT: Angelo non avevo visto la tua risposta : Sorry! :

_________________
Immagine
Immagine
Immagine
Immagine
Immagine
Immagine
Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: Rilasciato SA-MP 0.3c RC1
MessaggioInviato: 28/11/2010, 22:56 
Avatar utente
Utente

Iscritto il: 31/10/2010
Messaggi: 901
Località: Universo - Via Lattea - Sistema Solare - Pianeta Terra - Europa - Italia - Sicilia - Grammichele(CT)
Favourite GTA: San Andreas
Xfire: Privato

Karma
2


Non connesso
non preoccuparti ;)

_________________
Immagine


I Miei Filterscript Per Sa-Mp

Rampone System By me and Mik_Teck
Autovelox System By me and Mik_Teck
Metro System By me
pLaserPointer By me

Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: Rilasciato SA-MP 0.3c RC1
MessaggioInviato: 28/11/2010, 23:49 
Avatar utente
Moderatore

Iscritto il: 28/10/2010
Messaggi: 919
Località: Veduggio con Colzano (Milano-Monza)
Favourite GTA: San Andreas
PlayStation Network: Nessuno
Xbox Live: Nessuno
Xfire: barle97

Karma
1


Non connesso
Bhe gli objects del samp.img comprendono il vulcano, il dinosauro.. tutto quello che c'è nei video del beta tester la.. gia un bell'inizio

_________________
disasm 0xFFFF00 1: LE HANTENNE DEL RUTER SI MVONO DA SL!11!1!!1
[EPD]Giovanni94m: AHSUAHSAUSHAUSAHSAU
disasm 0xFFFF00 1: bella questa asd

[EPD]Giovanni94m: io non riesco a trovare un gioco che ci giocavo su ps1
[EPD]Giovanni94m: non ricordo il nome
[EPD]Giovanni94m: era un omino rosa
[EPD]Giovanni94m: ...
[BCD]barle_the_king: forse cercavi omino bianco [cit. google]
[BCD]barle_the_king: auhsahusuha
[EPD]Giovanni94m: no ahsau
[BCD]barle_the_king: firma duhahudshue

Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: Rilasciato SA-MP 0.3c RC1
MessaggioInviato: 28/11/2010, 23:54 
Avatar utente
Utente

Iscritto il: 31/10/2010
Messaggi: 901
Località: Universo - Via Lattea - Sistema Solare - Pianeta Terra - Europa - Italia - Sicilia - Grammichele(CT)
Favourite GTA: San Andreas
Xfire: Privato

Karma
2


Non connesso
oddio non avevo visto il samp.img ._. xD, comunque senza MTA non è possibile metterli ._.

_________________
Immagine


I Miei Filterscript Per Sa-Mp

Rampone System By me and Mik_Teck
Autovelox System By me and Mik_Teck
Metro System By me
pLaserPointer By me

Immagine


Top
 E-mail  
 
Visualizza ultimi messaggi:  Ordina per  
 Pagina 1 di 8 [ 151 messaggi ] 

Vai alla pagina :: 1, 2, 3, 4, 5 ... 8  Prossima »
  Apri un nuovo argomento Rispondi all’argomento

Tutti gli orari sono UTC + 1 ora [ ora legale ]



Chi c’è in linea

Visitano il forum: Nessuno e 28 ospiti


Non puoi aprire nuovi argomenti
Non puoi rispondere negli argomenti
Non puoi modificare i tuoi messaggi
Non puoi cancellare i tuoi messaggi
Non puoi inviare allegati

Cerca per:
Vai a:  
cron