GTA In Mod Is A Very Special Game, Because it very happened

Wednesday, March 20, 2013

Susanoo Not Awesome Sasuke V1

do not much to say, on the map, finally found the bones separately.
gta_sa-fast-2012-06-26_13-20-29-58.jpg 






  gta_sa-fast-2012-06-26_13-22-07-91.jpg

gta_sa-fast-2012-06-26_13-23-53-96.jpg
Download
Read More...

Kyuubi map



Author:Nikita-Kun

Read More...

Amagakure (Hidden Village Of The Rain)



Author:Madaraanggara
Download Link:
http://adf.ly/GHTGA
Read More...

Valley Of The End



Lokasi/Location

[center]Author: MadaraAnggara & Thedarist
Pass : madaraanggarat
hedarist
Download Link:
HERE
Read More...

Sunday, March 10, 2013

Cara Membuat SAMP Server

Hello guys, galls and trolls.

Due to most people's aversion to Linux, and the SA:MP Wiki entry is unsympathetic towards Linux newbies, I've decided to throw together a real-world, step-by-step tutorial on how to set up a fresh Linux VPS/Dedicated Server with SA:MP.
However, explained a little more simply.

This may be quite long and detailed, but that's mainly so people freaked out by the command line interface actually understand what's going on.
Throwing in random commands won't help anyone in the long run, especially when things go wrong
Also, this server is made in the point of view of a Windows user. Users running Mac OSX/Linux, adjust certain areas accordingly.

So! With the introduction out of the way, let's begin.



UPDATE: I've added a web server tutorial later on in the thread.

Disclaimer:
This tutorial uses a VPS outside of the Cake.io Network.
In fact, it's a 64MB VPS from Inception Hosting. That's right kids, 64MB.
I, however, do not recommend using such a low specced system for production use.


Step 1: Hello, Linux.


Quote:
Presuming you've just rented an unmanaged VPS or Dedicated Server running Linux, they'll usually provide you with SSH login credentials, as well as your IP.
SSH stands for Secure Shell; think of it as a logging into a PC's cmd.exe remotely.

To log in to your server through SSH, you'll need an SSH client.
The most common SSH client for Windows is PuTTy, which you can download from...
http://www.chiark.greenend.org.uk/~s.../download.html
Quote:
Let's fire up PuTTy!


As you can see, from that lovely image, you'll need to put in your Server's IP in the Hostname field, in addition, make sure the connection type is SSH.
The default port for SSH is 22.

Once you're ready, hit 'Open'.
Quote:
You'll then be approached by the login prompt.
Type in 'root', hit enter, and then type in your password.
Note: The characters will not show when being typed.

If all goes well, you'll be logged in. Horray!
Step 2: User Accounts
Quote:
Generally speaking, running anything as the root user is a bad idea from a security point of view.
Because of this, let's create an account for the user.
Quote:
Supposing you want to create an account called 'samp', you'll use this command.
Code:
adduser -m samp
If you're running a Debian based system, remove the -m switch in the above command, and it'll also automatically prompt you to make a password.
If you're running a RedHat based system, like CentOS, you'll then want to give it a password, so you'll need to use this command.
Code:
passwd samp
Follow the onscreen prompts, and hey presto, you've got a user account for SA:MP

It would've looked a little bit like...
Step 3: Let's get SA:MP

Quote:
Got this far? Great! We're right on track to downloading SA:MP.

Firstly, you'll need to close the existing login to your root user acount, and log-in to your SA:MP user account.
So open up PuTTy, enter your server's IP address, log in with the username and password you just created.

In this section, you'll also learn how to download files, copy/paste in PuTTy, and avoid typing in incredibly long file names.
Brilliant stuff
Quote:
Download the server package.
To download files on a Linux based system, we'll use 'wget', since it's pretty simple and straight forward.

Navigate to the SA:MP downloads page, and find the link to the Linux server package.
Right click the link, click on 'Copy Link Address' and then go back to the PuTTy window.

Start by typing in wget, hit the space bar, and then right click onto the PuTTy window.
This pastes the link you've just copied, saving you a load of time from typing it out.
To execute the command, and download the files, just hit enter.

Your command should've looked something like this:
Code:
wget http://team.sa-mp.com/files/samp03dsvr_R2.tar.gz
Quote:
Extracting the files
So, you've successfully downloaded the file, but what on Earth is that .tar.gz extension?!
Think of it as a file, within a file. The 'tar' part is basically cello-taping the files together, whilst the 'gz' part compresses the 'tar' file with Gzip compression.

To extract it, it's pretty darn simple, although the tar commands are horrible to look at.
But Hey, watch out kids, here's another Linux trick to show your friends. Remember I said I'll show you how to avoid typing out awkwardly long file names? Here we go.

You'll need to start out by typing 'tar zxf'
Press space.
Then type the first couple letters of the server package (sa) then hit tab. As if like magic, the full filename has appeared.
Now just hit enter, and the package will silently extract itself.

The command should've looked a bit like
Code:
tar zxf samp03dsvr_R2.tar.gz
To see where the files have gone, use the 'ls' command, and it'll show you the files in the directory you're in.
Quote:
Here's a screenshot showing what just happened on my screen.

Notice at the end, I've used the 'ls' command.
It's showing the .tar.gz file we downloaded, and the samp03 directory that's been extracted.
Step 4: First Start-up
Quote:
So, you want to get the server started up?
Fair enough. Let's get to it.

You'll need to change your directory to the samp03 directory.
Quite simply, use the following command:
Code:
cd samp03
Quote:
Editing the server.cfg
As you're most likely aware, if you use the default server.cfg file when trying to start the server up, it'll complain and refuse to run, because you haven't changed the default password.

So, let's use a simple editor called 'nano' to edit the server.cfg
Code:
nano server.cfg

A screen looking like that should've popped up.
You'll be happy to know, that you can browse around the server.cfg by using your arrow keys, and just typing to edit the file. Simple stuff, right?

Once you've finished editing the file, hit CTRL+X, press 'Y', then Enter.
Your file is now saved!
Quote:
STARTEN THE SERVER!
Although an interesting command, it won't get your server started.
At the very least, because you don't have the correct permissions to launch the server.

That's right, you'll need to let your system know that the SA:MP binaries are allowed to be ran.
Luckily, it's just this simple command, where '-x' denotes 'executable'

Code:
chmod +x samp-npc samp03svr announce
Now you've got the formalities sorted, you can use the nohup command to run the server in the background.
This means it'll run without any intervention, and you can close your PuTTy session without the server closing.

An example command would be
Code:
nohup ./samp03svr &
Yes, the & was intentional
Congratulations, you now have a server running.
Here's a few things you'll probably want to do post-setup:

  • Upload GameModes/FilterScripts/Plugins
  • Install a MySQL Server

Quote:
Uploading Files to your Linux Based Server
Although I've previously shown wget as a method of getting files onto your server, it isn't convenient when you're updating your script, or just uploading a few filterscripts.
It should be noted, that you don't need FTP to do this, oh no. Most SSHd's come with a SFTP server built in, so there's nothing you need to install on your server

Anyhow, let's get to it.
You'll need to get a SFTP client, for the sake of simplicity, go download FileZilla
In your FileZilla window, enter your server's IP, your SA:MP username, and your password into the QuickConnect bar. Remember, you're using Port 22, since you're still using SSH.

Navigate to your samp03 server folder, and drop your files into the correct folders.
Remember, Linux is CaSe SeNsItIve. LVDM isn't the same as lvdm.
Also, you need to set the correct permissions.

Make sure your 'scriptfiles' folder is writeable.
Right click the folder, and ensure that both read and write permissions are set.

Make sure any plugins are executable
Right click the file, and ensure the executable permissions are set
Quote:
Installing a MySQL Server, properly.
'Properly?!' You say with shock? Yes. If you're running a Debian or CentOS, and decide to 'apt-get' or 'yum' the MySQL server packages, you'll most likely get a very old version.
Since the latest plugins generally need newer versions, and the performance of the latest MySQL versions are significantly better, it's worth spending an extra couple minutes to do things properly.

Debian Systems
We're going to add the DotDeb repository to our apt-get sources.
The bloke who runs it compiles the latest Web-Server packages and serves them up for free, but you'll need to enable it first.
Oh, also, this is for Debian 6 (Squeeze) only. If you're running Debian 5 (Lenny), it's time to upgrade. It's reached it's end of life.

Using the root account, we'll need to add a couple lines to our /apt/sources.list file.
So, use nano to open the file:
Code:
nano /apt/sources.list
and then put these two lines at the end of the file
Code:
deb http://packages.dotdeb.org squeeze all
deb-src http://packages.dotdeb.org squeeze all
You'll then need to let Debian know that this package repository is safe
Download the PGP key:
Code:
wget http://www.dotdeb.org/dotdeb.gpg
and add it.
Quote:
cat dotdeb.gpg | sudo apt-key add -
and now you'll want to install the MySQL server. Simples!
Code:
apt-get update
apt-get install mysql-server

RedHat Based Systems (CentOS/Scientific Linux)
We'll be using the Atomic Repo for the latest MySQL packages, luckily, the installation is a little more straightforward than Debian.

Download the Atomic Repo Installation Script:
Code:
http://www.atomicorp.com/installers/atomic
Then run it
Code:
bash atomic
Now you'll want to install the MySQL server. Easy Peasy.

Code:
yum update
yum install mysql-server
Conclusion

If you've followed this tutorial correctly, you'll have set up a SA:MP server, and installed the MySQL server as well.

If I have time, I'll update this to include administrating the MySQL server using Phpmyadmin, but it'll involve installing a web server, and optimising it to reduce memory usage.

If you have any questions, pointers, or things you think I've missed out, reply to the thread.
Someone might be thinking the same thing

Anyone, I hoped I've helped someone out.
Good luck!
Read More...

Thursday, March 7, 2013

SCIENTIFIC WORK ENVIRONMENT BUSINESS

Hi All I am new administrator so I would expect for all my friends to each other to keep order here is the download by clicking ads
To donate to keep this blog up to date so that it can provide a nice article for my friends all
Thank you
Read More Articles Blog It
Here's my article

SCIENTIFIC WORK ENVIRONMENT BUSINESS

ABSTRACT
This paper discusses efforts Restaurants, a considerable effort and promising business opportunities that most often encountered, because the business is so close to the scope of the community. Eating effort is always there in any of the times. But most people of many conditions is quite difficult to start a business or business? Well?? we cover all the neighbors that conditions in this paper.
INTRODUCTION
Most people want to achieve success, but not a few of them are confused how to start a business. Starting from the intention and focus to achieve something we want to have is on the terms of a new first intention to start a business. What if you include people who are economically sufficient capital for their business. Apapila was already in the
class was the first thing you must remember "that any attempt to start a business should never be afraid to try it". sometimes many conditions and a combination of situations that sometimes make people feel able to start a business, one of which is the business opportunity this restaurant.
KEY TO START A BUSINESS
a. View and pay attention to opportunities in your neighborhood
Let see what the needs are in want of the environment, usually in the restaurant business you have to be smart to determine the location that you want to create a place of business. as in places the student housing complex environment, and crowded places. Well for a home business opportunity this dining places like that are usually biased attract customers quite a lot, because their need for fast food. Usually their activities as to make them feel lazy to cook at home or in the boarding house. This is your chance to open a business in that place. And you also have to meliahan marketing price that fit in the neighborhood. As prices for standard student psa but you get more untungyang effort to rotate back. And most importantly how you organize and manage the company. Lankah-step Getting Started in starting a business:
1. Study carefully the background of the environment around you.
2. If possible, ask others who have achieved success in the business field Eating.
3. Find businesses gap can still be entered.
4. Customize your business with interests and abilities.
Of these four steps, we bias start a little business.
b. Presentation
For the food business, if you are confused in choosing what foods to be sold, you can start from your favorite foods. If you are more adventurous, you can start from the foods that are sold around the place you want to sell, and certainly much needed in place. Please feel free to taste delicious food business. The business of the restaurant is also very sensitive to taste, because it is very important that there is artisan cuisine truly experts in their field. Selling the one cuisine
best and high quality. Do not try to open a restaurant if there is no great cook cooking.
In starting a food business is not always a mainstay deliciousness factor. Reliable in making food and understand how to manage a food business are two different things. If you are reliable in producing food or snacks, then you must know how to manage and start your business. Here are some tips and tricks in starting a business in the food:
1. Always do a renewal of your home-cooked meals. You can research the food products that you produce sample by distributing food to your colleagues and friends nearby, so we know the shortcomings of the food products that we produce, both in terms of taste and manner of presentation. Then do the repairs in accordance with consumer demand.
2. Plan an outlet to sell Think carefully whether you want to create your own store or work with others? For example, if your business is a business that you worked a wedding cake, then you can work with the wedding organizer. Or other means such as by working with the canteen to supply food you produce. For this you have to pay attention to the cost of transportation and system delivery.
3. Plan for technology to be used. Do your products need a special room to prepare for it? Is it necessary to buy special equipment for storing raw materials? And so forth. If you are just starting your food business should reduce spending on production technology investments. Initially to obtain raw materials you can ask for the supply and cooperate with others.
This is done so that is not too heavy to meet the needs of capital. But once you have a regular customer, you can buy equipment production. Other than that there is nothing wrong if you test your home-made products to the experienced to prevent something to be desired in the future.
4. Attractive packaging design packaging you to sell your product to determine the image of your product is. The designs are interesting and creative is one of the marketing strategies to get your product in demand by many people.
5. Do not be afraid Fight all the negative thoughts that settle in your mind. Keep your mind not sell fear, afraid of a lot of criticism of your product. The most important thing in starting a business is the courage to take decisions. For that you have to do good preparation before you start a business. Remember that success is only gained through the process and full of obstacles.
c. Managing Financial Eating
Prepare business bookkeeping initially be made in a way that is quite simple, which is understandable and contains all the calculation effort. But that can be said to be such a simple still requires a long process of recording (because it is done manually). Here we see the completeness of business bookkeeping, among others:
1. The book records the stock of goods
Used to record goods in and out. By making a note stock will be clearly known where the number of items that are still available and the amount sold. Recording of inventory based on the unit used items.
2. Entered book is a book that is used to record the results of the sales that have been made (income)
3. Expenditures book book used to record the costs already incurred from the cost of the daily, weekly, to monthly, accompanied by invoices or receipts.
4. Notebook R / L notebook is designed to calculate the gain or loss realized in the business. Usually these books can be recorded on a weekly and monthly basis.
Ideally if the bookkeeping is done in an orderly manner, you will get a neat corporate financial data. But if the position of your restaurant business is no longer small, so you can imagine how difficult it is to manage the company finances as expected. Moreover, no one involved in it is able to ensure the accuracy of the data. Given the growing number of transactions conducted and diverse.
This is the reason why computerized required to manage your business financially. Using the accounting, financial data generated will be completely accurate. In addition to time efficiency in work, because you or your employees do not need to perform the accounting records of a long process as above. In addition, the owner of the restaurant would be faster to know the position of their business, so that at any time the financial evaluation efforts.
Bibliography
http://peluangusahaoke.wordpress.com/tag/penyajian/http://pusatresto.wordpress.com/2009/04/30/mengelola-keuangan-rumah-makan/
Read More...

Mod Sai Naruto Shippuden skin for GTA SA




 
Download [click here]
Skin By Madara Anggara. 
Read More...