Posts: 277
Threads: 19
Joined: Sep 2013
1.
When I enter a Cluckin' Bell, Sex Shop or Burger Shot it works fine, but when I exit one of those stores, I get teleported infront of the first shop I created with the same interior as the shops above.
Is there anything I can do with this?
2.
I have the CJ skin in the class selection, I didn't add it, and I don't have any invalid skin id's, how can I remove it?
Posts: 2,938
Threads: 162
Joined: May 2010
For #2, find the AddPlayerClass line with 0 as the skinid and remove it.
Posts: 277
Threads: 19
Joined: Sep 2013
Quote:
Originally Posted by Kar
For #2, find the AddPlayerClass line with 0 as the skinid and remove it.
|
That's the problem, I don't have a invalid skin id
OR skin id 0 in the script.
Posts: 10,066
Threads: 38
Joined: Sep 2007
Reputation:
0
The only invalid skin is skinid 74. It doesn't work and will set the CJ skin instead.
As for the first problem, use virtual worlds.
Posts: 277
Threads: 19
Joined: Sep 2013
Quote:
Originally Posted by Vince
The only invalid skin is skinid 74. It doesn't work and will set the CJ skin instead.
As for the first problem, use virtual worlds.
|
I don't have skin id 74 in my script.
So should I use different virtual worlds when I enter a store?
Tested now, didn't work.
Posts: 277
Threads: 19
Joined: Sep 2013
I have everything like that.
This is for my first store (didn't add everything here).
pawn Код:
CMD:exit(playerid, params[])
{
SendAdminText(playerid, "/exit", params);
if(IsPlayerInRangeOfPoint(playerid, 3.0, 6.092340, -31.724231, 1003.549438))
{
SetPlayerPos(playerid, 2097.666992, 2224.698242, 11.023437);
SetPlayerInterior(playerid, 0);
SetPlayerVirtualWorld(playerid, 0);
return 1;
}
Posts: 277
Threads: 19
Joined: Sep 2013
Hm, didn't check your code properly, will try that.
EDIT
Same problem.