#1

Im new at scripting but im managing to keep adding vehicles to my server, etc..

I need some help if you guys can help me out please.

I need something a FS or anything that I can open a shop like 24/7 with a white/yellow arrow in front of the door so

people can access inside. Please help me thanks.
Reply
#2

Quote:
Originally Posted by oscar7610
Посмотреть сообщение
Im new at scripting but im managing to keep adding vehicles to my server, etc..

I need some help if you guys can help me out please.

I need something a FS or anything that I can open a shop like 24/7 with a white/yellow arrow in front of the door so

people can access inside. Please help me thanks.
https://sampwiki.blast.hk/wiki/AddStaticVehicle
https://sampwiki.blast.hk/wiki/AddStaticVehicleEx
Reply
#3

Hello, Oscar you just need to go to "Search" And searching for Business System or something or look at some tutorials for making one yoursellf than you will learn more scripting
Reply
#4

pawn Код:
new StoreOne;
public OnGameModeInit()
{
    StoreOne = CreatePickup(1318, 1, Float:X, Float:Y, Float:Z, 0) //The X Y and Z positions you can fill out yourself
    return 1;
}
// 1318 is a white arrow pointing down

Here's what happens when they pick it up
pawn Код:
public OnPlayerPickUpPickup(playerid, pickupid)
{
    switch(pickupid)
    {
        case StoreOne:
        {
            //Set their pos & interior.
        }
    }
    return 1;
}

https://sampwiki.blast.hk/wiki/CreatePickup
Reply
#5

Hey thank you guys im trying to learn more.

Im a noob
Reply
#6

anyone pleasE? like I need to know how Can i open a shop with an arrow outside so people can enter it thanks.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)