Kamis, 26 Maret 2015

SA-MP 0.3.7 RC3 Released

As you know sa-mp development team were developing the SA-MP 0.3.7 and today was released the SAMP 0.3.7 RC3 you can see the information and download the client or server here : http://forum.sa-mp.com/showthread.php?t=559572

 SA-MP 0.3.7 RC

The 0.3.7 RC is a testing version for an update to SA-MP's 0.3 branch. The official release will come once the testing phase is complete.

Updates:

SA-MP 0.3.7 RC3-3 Optional client update

- Fixed: The skins added for RC3 were not working as model previews.
- More fixes for camera collisions with objects attached to vehicles.
- After respawn the player might be left with CJ running anims.
- There were still dialog list width problems.

SA-MP 0.3.7 RC3-2 Optional client update

- The selected item for tablist dialogs was not being reset when a new dialog was shown.
- Fixes a dialog width calculation problem for list type dialogs which might lead to column text being truncated.

SA-MP 0.3.7 RC3 Client/Server update

- Fixes chat window 'directmode' which was broken since the font size changing was added.
- The streaming memory allocation amount uses the total system memory found by Windows, not the available memory.
- Fixes problems with the scoreboard and dialog lists where the last items could not be clicked on without scrolling.
- Fixes spacing between dialog text and dialog buttons at the bottom.
- Adds new dialog types DIALOG_STYLE_TABLIST and DIALOG_STYLE_TABLIST_HEADERS which are extensions of the LIST type dialog with support for columns.
For example usage of the TABLIST style, please see the commands /testtablist and /testtablistheaders in the test_cmds filterscript.
TABLISTS allow up to 4 columns, with 128 maximum characters per column and 256 maximum characters per row.

- New object IDs added by Matite:
140 new objects
New filterscripts added demonstrating some of the objects/building replacements.
12 variations of the existing skins (skin ID 300-311). These are mostly modified versions of the cop skins from the game (no accessories etc). The skins are still WIP, so please don't complain if they are changed before the final 0.3.7 release.

SA-MP 0.3.7 RC2 Client/Server update

- Some people complained that the default font sizes were not the same as the ones from the previous SA-MP releases. The font sizes used as default are the same defaults from previous 0.3 versions.
- Fixes additional camera collision problems on objects (some issues still remain outside 3000 units).
- More changes to camera targeting should improve things a bit.
- Adds /ctd client command to enable client debugging of the player camera target.
- DisableRemoteVehicleCollisions() should work for boats.
- No more camera collisions with vehicles when DisableRemoteVehicleCollisions() is enabled.
- Adds EnablePlayerCameraTarget(). The camera targeting functions added in 0.3.7-RC1 will be disabled by default as it may use bandwidth on servers when it's not needed.
- Adds SetObjectNoCameraCol()/SetPlayerObjectNoCameraCol() to disable camera collisions on the selected object ID. This function only works on objects outside the normal map boundries for now.
- Adds GetPlayerPoolSize()/GetVehiclePoolSize() to obtain the highest playerid/vehicleid in use.
- The server will only come in a 1000 player variation from now on since there should be no performance difference between a 500 player server and 1000 player server. If you have existing script loops bound to MAX_PLAYERS or MAX_VEHICLES you should consider rewriting these loops to use GetPlayerPoolSize()/GetVehiclePoolSize(). Alternatively, redefine MAX_PLAYERS lower in your script or by editing the SA-MP pawn includes.

Example:

Code:
// Old code
for(new x=0; x < MAX_PLAYERS; x++) {
    if(IsPlayerConnected(x)) { // do stuff with a player id
    }
}

// New code
new HighestPlayerId = GetPlayerPoolSize();
for(new x=0; x <= HighestPlayerId; x++) { // (note the condition change from < to <=)
    if(IsPlayerConnected(x)) { // do stuff with a player id
    }
}

- Birds won't fly through SA-MP objects.
- Fixed problem where player was frozen if SelectObject() was used from a dialog response.
- Objects with a large draw distance now support alpha sorting.
- Fixes a problem with the server browser where one server might be able to fake a reply pretending to come from another server.

- Adds over 90 new objects created by Matite:
The LS BeachSide building and LS apartment buildings now have underground car parks.
New house sections with interiors for the island land objects:


SA-MP 0.3.7 RC1 Client/Server update

- Adds UI font size, face, weight changing.
UI font size can be changed with the /fontsize command in the client. Valid fontsize is -3 to 5.
- Although not officially supported, the font face and weight can be changed by editing the sa-mp.cfg file:
Code:
fontface="Comic Sans MS"
fontweight=1
Supported font weights are 0 = BOLD (default) and 1 = NORMAL.

- The SA-MP client will now dynamically select the steaming memory amount for GTA:SA based on how much RAM is available. If you have a 'streaming memory fix' mod, it should no longer be needed and you should delete it. The streaming memory stats are available under the F5 screen in SA-MP.

- Adds over 240 objects created by Matite.
- Example scripts for using some of the new objects/features, including stunt_island.pwn, modular_island.pwn, ls_beachside.pwn etc.
- Adds fishing idle animation and example script.
- SelectObject() function can select objects that have no collision.
- Scoreboard will be larger if the game resolution is bigger than 800x600.
- Adds checks for bad floats/vectors in bike lean, train speed, camera's AimZ, bullet offset.
- Adds DisableRemoteVehicleCollisions() function to disable collisions between vehicles driven by other players.
- The editor 'Test' mode time/weather is now fixed. You can change the time/weather with /set_time and /set_weather.
- Default draw distance for editor 'Test' mode objects is 599.0.
- Removed the Idle camera (camera shake).
- Adds connection cookie system to prevent spoofed connection flooding.
- Syncs the weapon ID with the shot info, meaning there is no chance of shot/weapon desync in the OnPlayerWeaponShot callback.
- Fix camera collision problem when objects attached to vehicle you are in.
- Fixes for vertex lighting/time of day updates when an object has a draw distance > 300.0.
- Fixes UV texture animation on objects with > 300.0 draw distance.
- Fixes camera collisions on objects and vehicles that are outside the normal world map.
- Adds weather cull zones for Verona mall, LS BeachSide, LS Apartment Building, LS Office Floors to the SAMP/samp.ipl file.
- Fixed a problem in RakNet which meant the NetStats_* functions could not be used if the player ID wasn't fully connected to SA-MP.
- Adds functions: GetObjectModel(), GetPlayerObjectModel().
- Adds functions: GetPlayerCameraTargetObject(playerid), GetPlayerCameraTargetVehicle(playerid), GetPlayerCameraTargetPlayer(playerid) to find the network object the player is looking at.
- Vehicle rotation syncing should be smoother.

Downloads:

0.3.7 RC3-3 Client
SA-MP 0.3.7 RC3 Client Installer

0.3.7 RC3 Server
SA-MP 0.3.7 RC3 Windows Server
SA-MP 0.3.7 RC3 Linux Server

0.3.7 RC2 Client
SA-MP 0.3.7 RC2 Client Installer

0.3.7 RC2 Server
SA-MP 0.3.7 RC2 Windows Server
SA-MP 0.3.7 RC2 Linux Server

0.3.7 RC1 Client
SA-MP 0.3.7 RC1 Client Installer

0.3.7 RC1 Server
SA-MP 0.3.7 RC1 Windows Server
SA-MP 0.3.7 RC1 Linux Server




Source : http://forum.sa-mp.com/showthread.php?t=559572

Minggu, 22 Maret 2015

How to download Minecraft Resource Pack

First of all that what you need to install resource pack for minecraft is the resource pack itself, download a resource pack, you should get a .zip file. you can also download much resoucepack at http://resourcepack.net/

Installing Resource Pack

  1. Download a resource pack, you should get a .zip file
  2. Open the folder to which you downloaded the file
  3. Copy the .zip file
  4. Open Minecraft
  5. Click on "Options", then "Resource Packs"
  6. Choose "Open resource pack folder"
  7. Paste the file into the resource folder in minecraft
  8. Go back to Minecraft, the resource pack should now be listed and you can activate it by choosing it and hitting "Done"

Installing on another Operation System

Windows

  1. Download a resource pack, you should get a .zip file
  2. Open the folder, in which you downloaded the file
  3. Copy the .zip file
  4. Press ⊞ Windows + R then type in: %appdata%/.minecraft/resourcepacks
  5. Paste the file into the directory
  6. Open Minecraft
  7. Go to "Options", then "Resource Packs"
  8. The resource pack should now be listed and you can activate it by choosing it and hitting "Done".

Mac Os X

  1. Download a resource pack of your choice
  2. Do NOT unzip the resource pack just move the .zip file to minecraft's resource pack folder (Should be at ~/Library/Application Support/minecraft/resourcepacks)
  3. Open up Minecraft and login
  4. At the main menu select "Options", then "Resource Packs"
  5. Now select your new resource pack and then select done
To access ~/Library/ on a Mac running Mac OS X 10.7 and above, switch to Finder, open the 'Go' Menu, and whilst holding down ⌥ Option, select 'Library'

Linux

  1. Download a resource pack, you should get a .zip file
  2. Open the folder to which you downloaded the file
  3. Copy the .zip file
  4. Type ~/.minecraft/resourcepacks/ in your file manager's address bar or in the console.
  5. Paste the file into the directory
  6. Open Minecraft
  7. Go to "Options", then "Resource Packs"
  8. The resource pack should now be listed and you can activate it by choosing it and hitting "Done".



And well done you have installed your resouce pack on your Minecraft.
Source : http://minecraft.gamepedia.com/Tutorials/Loading_a_resource_pack

 

Rabu, 18 Maret 2015

Minecraft: GTA San Andreas Los Santos Map


Actually this map was made for survival games but you can roaming arround with this map if you wont play the survival games.
Installing the Maps:
  • First of all that you need to install the maps is downloadin the maps files, Download the GTA San Andreas Survival Maps Los Santos (MediaFire).
  • When you finish download it, Click Start > Run. If you don't see "Run" try holding down your "Windows" key and press the R key. Type %appdata% (case doesn't matter but be sure to include the % markers) and click OK. Open the .minecraft folder. (If you're Using Linux place your path to ~/.minecraft, And if you using Mac OS X Place your path to ~/Library/Application Support/minecraft
  •  in .minecraft folder Go to "saves" Folder, then go back to the files that you've downloaded before, then extract it into the saves folder.
  •  Then well done play your minecraft as ussual then there will a San Andreas Map when you start the game.




Senin, 16 Maret 2015

How to Install a SA-MP on your GTA San Andreas and How play it

Installing SA-MP

First of all all the thing that you need is having the GTA San Andreas game that you've download/install then download the game at SA-MP Official Website : http://sa-mp.com/download
Download the SA-MP client installer from 1 mirror and install the program in to your GTA San Andreas folder. you can choose any mirror of these.
When you've done download it open the application then install as usual like you install any application if you were confused about the destination folder, it mean were you place your GTA San Andreas game files is ussually correct as default.














When you finish install the program, it should place a shortcut named SAMP on your desktop, if it's not there check your GTA San Andreas directory.

 Finding A Servers

Finding a server on sa-mp is easy just click on the Hosted or Internet tab then there you go there are many list of the Server that you could play, but there may also full and passworded servers then you need to search another server, you can also add manually to add the server manualy from add server icon tick.













 

Game Keys

As SA:MP is built on top of the San Andreas game, nearly all the keys are exactly the same as single player with the exception of a few SA:MP-specific commands :-
Key Description
F1 Displays the in-game help menu
T Allows you to chat & enter commands
Shift Select a class while at the class selection screen (or press 'SPAWN' button)
F4 Allows you to reselect a character (on death)
F5 Shows the network data (eg: bandwidth usage)
F6 An alternate of "T" (chat)
F7 Shows/hides the chat window (Pressed twice toggles the HUD removal)
F8 Takes a screenshot
F9 Shows/hides the "death" window
F10 Hides the HUD (while held)
G Allows you to enter a car as a passenger
H Allows you to shoot while a passenger
Esc Hide the chat input box (if open)
As for all other commands, they are exactly the same as single player. If you have never played San Andreas before it is highly recommended that you play through Single Player first - even if it is only the first few missions. A lot of playing SA:MP involves knowledge of single player itself, especially tasks such as driving around or looking for places to buy health/weapons.

Source : http://wiki.sa-mp.com/wiki/Getting_Started