Help for Kikosalaz
#1

i wanna how to close these doors and set a pickup teleport



not only the binco one, i wanna close all doors on San Andreas so set my owns interiors and pickup whenever i want
Reply
#2

heres to remove them!

public OnGameModeInit()
{
DisableInteriorEnterExits();
return 1;
}
Reply
#3

Search pickups on Wiki.
Reply
#4

I dont think pickups have anything to do with it....
Put this under "OnGameModeInIt":
Код:
  DisableInteriorEnterExits();
Reply
#5

Quote:
Originally Posted by DeltaAirlines12
I dont think pickups have anything to do with it....
Put this under "OnGameModeInIt":
Код:
  DisableInteriorEnterExits();
He wants pickup teleports.
The other question was already answered.
Reply
#6

thanks everybody for the answers and about the pickups i know how to put them on the GM thanks again you were helpful
Reply
#7

good luck with that all pickups
Reply
#8

i dont wanna make anymore post to not spam the forum so i'll request any thing i need here, so it wont spam the forum.

This time i need help with the team's color, i wanna know how to make team's color ids have colors like GF i'm using wasted roleplay someone know in that GM where are the colors for the factions?

thanks in advance
Reply
#9

Quote:
Originally Posted by kikosalaz
i dont wanna make anymore post to not spam the forum so i'll request any thing i need here, so it wont spam the forum.

This time i need help with the team's color, i wanna know how to make team's color ids have colors like GF i'm using wasted roleplay someone know in that GM where are the colors for the factions?

thanks in advance
Well I've never worked with Wasted Roleplay, but...
What ever they have there teams defined as, probably something like

pawn Код:
#define TEAM_LSPD
Or maybe as numbers.
You will find something like this, it might vary a bit in your script.
pawn Код:
new gTeam[MAX_PLAYERS];
Well around on player spawn, or w/e you have them load up stats.

This is just an example.

pawn Код:
if(gTeam[playerid] == TEAM_LSPD)
{
    SetPlayerColor(playerid, 0x0000FFAA);
    SendClientMessage(playerid, 0x0000FFAA, "Welcome back Officer");
    return 1;
}
// Other Teams would go down here as an else if statement.
else if(gTeam[playerid] == TEAM_MAFIA)
{
// Code
}
Reply
#10

thanks dude you helped me alot
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)