4 fast questions - 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: 4 fast questions (
/showthread.php?tid=236082)
4 fast questions -
ElChapoGuzman - 06.03.2011
1. Can i get a custom cj on sa:mp with cloth and if so how
2. why cant i move my mouse to make it point other places!
3. how can i get a 3d text on top of player and how can you make command like /hide and it hides the 3d text over head
4. what is a player class? and is a class like a team or do they have a difference
thanks
Re: 4 fast questions -
Lorrden - 06.03.2011
1. Yes, but nobody else would see it.
2. What you mean?
3. Search Wiki for Create3DTextLabel
4. A player class is the same as the Skin id.
Re: 4 fast questions -
TheYoungCapone - 06.03.2011
1.Theres 2 ways you can install a mod or you can attach objects to players.
2.Explain.
3.
Код:
new Text3D:label[MAX_PLAYERS];
if(strcmp(cmdtext,"/show",true)==0)
{
label[playerid] = Create3DTextLabel("Whatever u want it to say",0xFF0000AA,30.0,40.0,50.0,40.0,0);
Attach3DTextLabelToPlayer(label[playerid], playerid, 0.0, 0.0, 0.7);
return 1;
}
if(strcmp(cmdtext,"/hide",true)==0)
{
Delete3DTextLabel(Text3D:label[playerid]);
return 1;
}
4. Playerclass is either a skin or you can make special classes like a police class ect,
Re: 4 fast questions -
ElChapoGuzman - 06.03.2011
Quote:
Originally Posted by Lorrden
1. Yes, but nobody else would see it.
2. What you mean?
3. Search Wiki for Create3DTextLabel
4. A player class is the same as the Skin id.
|
2 i mean like when i try to move my mouse it doesnt move it just stays still
Re: 4 fast questions -
Hashski - 06.03.2011
2 = Press pause move your mouse fast, then quickly press ESC again and it should work.
Re: 4 fast questions -
TheYoungCapone - 06.03.2011
Quote:
Originally Posted by ElChapoGuzman
2 i mean like when i try to move my mouse it doesnt move it just stays still
|
ahhh yea it happens to me all the time just press ESC
Re: 4 fast questions -
ElChapoGuzman - 06.03.2011
okay thanks guys for your answers