Jump to content

Help with simple script...


MisterQuestions

Recommended Posts

Posted

Hi! im making a simple script... but doesnt work fine...

function setCameraOnPlayerJoin() 
     fadeCamera(source, true, 5) 
     setCameraMatrix(source, 1468.8785400391, -919.25317382813, 100.153465271, 1468.388671875, -918.42474365234, 99.881813049316) 
end 
addEventHandler("onPlayerJoin", getRootElement(), setCameraOnPlayerJoin) 
  
function IsLoged() 
setCametaTarget(source) 
end 
addEventHandler("onPlayerLogin", getRootElement(), IsLoged) 
  

When player joins, it set the camera to vinewood sing, but when logins i want to set to the player doesnt work, why?

"El conocimiento jamás debe detenerse, por que es lo único que nos salvará cuando no nos quede más".

Att: -|TG|-Mister[Q]<.

Posted
function ComandoNametag() 
setPlayerNametagShowing(source, true) 
else 
setPlayerNametagShowing(source, false) 
end 
addCommandHandler("show", ComandoNametag) 

And what is wrong here?

"El conocimiento jamás debe detenerse, por que es lo único que nos salvará cuando no nos quede más".

Att: -|TG|-Mister[Q]<.

Posted

You can't use 'else' without 'if'.

The correct syntax is:-

If 2+2=5 then

true

else

false

end

And yes every 'if' statement needs an 'end' at the end of the statement.

More brief explanation:- viewtopic.php?f=148&t=75501

You can use

IsPlayerNametagShowing 

Now try to solve it your self with the help of given information.

Multi Theft Auto Player since middle of 2011.

Everybody want to act Crazy/Smart/Intelligent/Different/Unique/Innocent and Thats why I am Perfect.

Posted

[lia]

function ComandoNametag(source)

setPlayerNametagShowing(source, not isPlayerNametagShowing(source))

end

addCommandHandler("show", ComandoNametag)

[/lus]

Posted
addCommandHandler( "show", function ( player ) 
    setPlayerNametagShowing ( player, not isPlayerNametagShowing ( player ) ) 
end ) 

Same script which I posted.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...