[Help] Skin Selection Is Invisible -
Falcon Interceptor - 30.09.2010
Alright, Let me explain it.
I have these codes
Code:
AddPlayerClass(59, -688.12347412109, 933.44329833984, 13.282037734985, 0, 0, 0, 0, 0, 0, 0);
AddPlayerClass(294, -688.12347412109, 933.44329833984, 13.282037734985, 0, 0, 0, 0, 0, 0, 0);
And These Also
Code:
SetPlayerPos(playerid, -690.98718261719, 939.55462646484, 13.282037734985);
SetPlayerCameraPos(playerid, -690.98718261719, 939.55462646484, 13.282037734985);
SetPlayerCameraLookAt(playerid, -688.12347412109, 933.44329833984, 13.282037734985);
The guy in selection should be above the tiger's carpet [ See The Coordinate. It is in Toreno's Ranch ]
But, when I get In Game I can't see the player there.
It makes me confused. I tried to fix it but. It's still the same
Thanks!
Regards,
Falcon Interceptor
Re: [Help] Skin Selection Is Invisible -
willsuckformoney - 30.09.2010
pawn Code:
SetPlayerCameraLookAt(playerid, -690.98718261719, 939.55462646484, 13.282037734985);
Re: [Help] Skin Selection Is Invisible -
Falcon Interceptor - 30.09.2010
Okay. I will try it later
Another problem:
I have these codes
Code:
{
if(strcmp(cmdtext, "/o", true)==4 || strcmp(cmdtext, "/ooc", true)==4)
{
if(!cmdtext[4])return SendClientMessage(playerid, 0xFF0000FF, "USAGE: /ooc [message]");
new str[256], pname[256];
GetPlayerName(playerid, pname, 256);
format(str, 256, "[OOC:]%s:%s ", pname, cmdtext[4]);
SendClientMessageToAll(COLOR_GREEN, str);
return 1;
}
if(strcmp(cmdtext[1],"/setfreq",true,7))
{
new tmp[64];
format(tmp,32,"%.01F",floatstr(cmdtext[9]));
pFrequency[playerid]=floatstr(tmp);
format(tmp,64,"Your Current Frequency is %s",tmp);
return 1;
}
if(strcmp(cmdtext[1],"/cr",true,1))
{
if(pFrequency[playerid]==0)return SendClientMessage(playerid,0xFF0000FF,"Use /setfreq [Frequency]");
new tmp[150];
GetPlayerName(playerid,tmp,24);
format(tmp,150,"[%.01F]%s: %s ,over",pFrequency[playerid],tmp,cmdtext[3]);
for(new ply;ply<MAX_PLAYERS;ply++)
{
if(pFrequency[playerid]==pFrequency[ply])SendClientMessage(ply,0xEE3333FF,tmp);
}
return 1;
}
return 0;
}
But, I tried it in Game and it is not working
SERVER: Unknown Command
Note: I have the new pFrequency; at top of script too
Re: [Help] Skin Selection Is Invisible -
Falcon Interceptor - 01.10.2010
Bump! I need help please.
Thanks
@ willsuckformoney: It's not what I wanted. The camera positioned well, The selection skins isn't there. I'm already correct. It is just weird
Re: [Help] Skin Selection Is Invisible -
Cameltoe - 01.10.2010
Why cmdtext[1]? And strings shouldn't exceed 128 cells. And oh, btw new tmp[150] <-- PlayerName - Better use MAX_PLAYER_NAME for player names, im not sure of the length its either 20 or 24 cells.
Re: [Help] Skin Selection Is Invisible -
Falcon Interceptor - 01.10.2010
I don't know.
I didn't make this commands myself. I found it on the forum when I search it.
Please give me the fixed code please. Thanks
Re: [Help] Skin Selection Is Invisible -
Cameltoe - 01.10.2010
Try to change cmdtext[1] to cmdtext.
Re: [Help] Skin Selection Is Invisible -
Falcon Interceptor - 01.10.2010
Trying. Will let you know if it works
Can you help me with the major problem? See Post #1 also See Post #4. I mentioned something
Thanks
EDIT: It is not working. Weird... I just copy and paste it from my old abandoned script though