TDK Posted August 2, 2010 Posted August 2, 2010 hi all.. i need help with making onplayerjoin and onplayerlogin scripts.. onplayerjoin need to outputchatbox to the player, onplayerlogin need to move player in team (only player with nicks: nick1 , nick2, nick3)... anybody have any ideas?? plz help.. i'm noob in lua scripting... and in eglish to)
dzek (varez) Posted August 2, 2010 Posted August 2, 2010 just read examples in wiki? like this one https://wiki.multitheftauto.com/wiki/OnPlayerLogin
TDK Posted August 3, 2010 Author Posted August 3, 2010 local root = getRootElement() addEventHandler("onPlayerLogin", root, function() outputChatBox(getPlayerName(source).."logged in group players", root) end ) function assignNewTeam ( source, commandName, teamName ) local theTeam = createTeam ( Players ) if theTeam then setPlayerTeam ( source, theTeam ) end end addEventHandler ( "onPlayerLogin", assignNewTeam ) -------- don't work, help pls.. and how to set nicknames to move into the team???
TDK Posted August 3, 2010 Author Posted August 3, 2010 local root = getRootElement() addEventHandler("onPlayerLogin", root, function() outputChatBox(getPlayerName(source).."logged in group players", root) end ) function assignNewTeam ( source, commandName, teamName ) local theTeam = createTeam ( Players ) if playerNick == "Player" , "Newbie" , "Lildog" then setPlayerTeam ( source, theTeam ) end end addEventHandler ( "onPlayerLogin", assignNewTeam )
50p Posted August 3, 2010 Posted August 3, 2010 DO NOT TRIPLE POST! Use the damn debug window.. You have many errors in such a short script. https://wiki.multitheftauto.com/wiki/Debugging
TDK Posted August 3, 2010 Author Posted August 3, 2010 DO NOT TRIPLE POST!Use the damn debug window.. You have many errors in such a short script. https://wiki.multitheftauto.com/wiki/Debugging DEBUG Mod don't help me(( maybe you can write an example plz?
dzek (varez) Posted August 3, 2010 Posted August 3, 2010 DEBUG Mod don't help me(( maybe you can write an example plz? lies.. im pretty sure that this: createTeam ( Players ) will trigger error.. your code is totally mess, and you should get back to basics, and stop requesting scripts after just merging few examples from wiki
TDK Posted August 3, 2010 Author Posted August 3, 2010 DEBUG Mod don't help me(( maybe you can write an example plz? lies.. im pretty sure that this: createTeam ( Players ) will trigger error.. your code is totally mess, and you should get back to basics, and stop requesting scripts after just merging few examples from wiki not lies=D ????? i know it((((
50p Posted August 3, 2010 Posted August 3, 2010 If you know it then fix it because debug window tells you what is wrong with your script and you can fix it easily after reading the message.
TDK Posted August 3, 2010 Author Posted August 3, 2010 If you know it then fix it because debug window tells you what is wrong with your script and you can fix it easily after reading the message. i'm a full n00b, but: how to activate debug mod and can you write move to the team script example???
50p Posted August 4, 2010 Posted August 4, 2010 You have to learn to debug your scripts because this is the most important thing you need to learn before you start scripting something serious or more advanced: https://wiki.multitheftauto.com/wiki/Debugging And about the teams, I think this may help you: https://community.multitheftauto.com/index.html?p ... ils&id=612
TDK Posted August 4, 2010 Author Posted August 4, 2010 You have to learn to debug your scripts because this is the most important thing you need to learn before you start scripting something serious or more advanced:https://wiki.multitheftauto.com/wiki/Debugging And about the teams, I think this may help you: https://community.multitheftauto.com/index.html?p ... ils&id=612 THX FOR WIKI =D o_O I LOVE YOU 50p!!!! THX MAN!!!!! ... Theme closed=D
dzek (varez) Posted August 4, 2010 Posted August 4, 2010 THX FOR WIKI =Do_O I LOVE YOU 50p!!!! THX MAN!!!!! ... Theme closed=D This link was in first reply by 50p.. -.-
TDK Posted August 9, 2010 Author Posted August 9, 2010 THX FOR WIKI =Do_O I LOVE YOU 50p!!!! THX MAN!!!!! ... Theme closed=D This link was in first reply by 50p.. -.- and what?? lamerXD
Recommended Posts