SA-MP Forums Archive
Reallife Roleplay - 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: Reallife Roleplay (/showthread.php?tid=160397)



Reallife Roleplay - admine - 16.07.2010

Best, players SAMP

I had a few questions!
- How do I create a job system
- How do I make a tutu rail system for roleplay? S
- How do I access only to board a car Job certain persons


And the last question.

where can I convert

Converted Objects: 468
and
Converted vehicles: 142

can convert I've already found two!
- Confertffs.com
who can find nothing eror!
and
Delux converter.com
Convert that they do well but only the objects
So the cars not!


Do you know a good converter to my cars
and can convert my objects?


All fixed thanks!


Re: Reallife Roleplay - DJDhan - 16.07.2010

ConvertFFS.com converts both the objects and the vehicles. So all you need to do is paste the contents of your .map file and it will convert them.

For your tutorial requests;

Quote:

How do I create a job system

It's the same as creating teams.
I have explained it HERE.

Quote:

How do I make a tutu rail system for roleplay? S

What's a tutu system?

Quote:

How do I access only to board a car Job certain persons

You mean how to reserve vehicles for certain jobs only?

Let's take fbi faction/job for example,

At top of scipt:
Код:
new fbivehicle;
Under OnGameModeIni():
Код:
fbivehicle = CreateVehicle(........................); //fill in the blanks
Then under OnPlayerEnterVehicle(playerid,vehicleid)

Код:
if(vehicleid == fbivehicle)
{
    if(pInfo[playerid][job] !=1)
    {
        RemovePlayerFromVehicle(playerid);
        return SendClientMessage(playerid,0xffffffaa,"This is a "FBI" vehicle."); //change pInfo[playerid][job] to whatever you decide name them from the tut for teams
    }

    return 1;
}



Re: Reallife Roleplay - admine - 16.07.2010

thank you no i need a start tuturial + register system for my roleplay and my other question is hot to instal a streamer ad my gamemode, because i have everytime a eror at the mideostream! what is the problem of that?

Sorry for my bad english


Re: Reallife Roleplay - admine - 16.07.2010

thank you no i need a start tuturial + register system for my roleplay and my other question is hot to instal a streamer ad my gamemode, because i have everytime a eror at the mideostream! what is the problem of that?

and I had something I wanted a house system
so that if you touch a door that you then
the house are !! this may

Sorry for my bad english


Re: Reallife Roleplay - admine - 17.07.2010

Quote:
Originally Posted by DJDhan
Посмотреть сообщение
ConvertFFS.com converts both the objects and the vehicles. So all you need to do is paste the contents of your .map file and it will convert them.

For your tutorial requests;


It's the same as creating teams.
I have explained it HERE.


What's a tutu system?


You mean how to reserve vehicles for certain jobs only?

Let's take fbi faction/job for example,

At top of scipt:
Код:
new fbivehicle;
Under OnGameModeIni():
Код:
fbivehicle = CreateVehicle(........................); //fill in the blanks
Then under OnPlayerEnterVehicle(playerid,vehicleid)

Код:
if(vehicleid == fbivehicle)
{
    if(pInfo[playerid][job] !=1)
    {
        RemovePlayerFromVehicle(playerid);
        return SendClientMessage(playerid,0xffffffaa,"This is a "FBI" vehicle."); //change pInfo[playerid][job] to whatever you decide name them from the tut for teams
    }

    return 1;
}
this is the eror:::

Quote:

C:\DOCUME~1\Londen\BUREAU~1\SA-MPS~1\ROLEPL~2.PWN(119 : error 017: undefined symbol "pInfo"
C:\DOCUME~1\Londen\BUREAU~1\SA-MPS~1\ROLEPL~2.PWN(119 : warning 215: expression has no effect
C:\DOCUME~1\Londen\BUREAU~1\SA-MPS~1\ROLEPL~2.PWN(119 : error 001: expected token: ";", but found "]"
C:\DOCUME~1\Londen\BUREAU~1\SA-MPS~1\ROLEPL~2.PWN(119 : error 029: invalid expression, assumed zero
C:\DOCUME~1\Londen\BUREAU~1\SA-MPS~1\ROLEPL~2.PWN(119 : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


4 Errors.