Seregamil Posted July 30, 2013 Share Posted July 30, 2013 (edited) Добрый день уважаемые пользователи данного портала Буквально вчера перешел с PAWN на Lua, после консультации с некоторыми пользователями сделал небольшой прототип мода, однако при старте сервера выдает ошибку на функцию, записанную в названии темы Строки: --[[ By Seregamil ]] addEventHandler("onPlayerJoin", getRootElement(), user_connect) addEventHandler("onPlayerQuit", getRootElement(), user_leave) addEventHandler("onPlayerChat", getRootElement(), user_chat) addEventHandler("onPlayerSpawn", getRootElement(), user_spawn) function user_connect() local red, green, blue = math.random (50, 255), math.random (50, 255), math.random (50, 255) setPlayerNametagColor(source, red, green, blue) outputChatBox("* ".. getPlayerName(sourse) .." is connected") --user_spawn(sourse) end function user_leave(quitType) outputChatBox("* ".. getPlayerName(sourse) .." has left server ( ".. quitType .." )") end function user_chat( message, messageType ) if(messageType == 0) then local red, green, blue = getPlayerNametagColor(source) outputChatBox(getPlayerName(source)..": #FFFFFF"..message, root, red, green, blue, true ) end end function user_spawn( posX, posY, posZ, spawnRotation, theSkin, theInterior ) posX = 145.64 posY = 526.65 posZ = 23.53 spawnRotation = 90.0 theSkin = 244 theInterior = 0 spawnPlayer ( sourse, posX, posY, posZ, spawnRotation, theSkin , theInterior) end Edited July 30, 2013 by Guest Link to comment
AriosJentu Posted July 30, 2013 Share Posted July 30, 2013 Полный код надо выложить, этот код ничего не говорит Link to comment
RastaOrecha Posted July 30, 2013 Share Posted July 30, 2013 Скорее всего это из-за ошибок в коде, а именно: user_connect - getPlayerName(sourse) .." is connected") user_leave - getPlayerName(sourse) user_spawn - spawnPlayer ( sourse, Правильное написание - source Link to comment
Seregamil Posted July 30, 2013 Author Share Posted July 30, 2013 Скорее всего это из-за ошибок в коде, а именно:user_connect - getPlayerName(sourse) .." is connected") user_leave - getPlayerName(sourse) user_spawn - spawnPlayer ( sourse, Правильное написание - source Спасибо, поправил, однако эффект все тот же Link to comment
_Vincent_ Posted July 30, 2013 Share Posted July 30, 2013 А если эвентхэндлеры в конец кода сдвинуть? Link to comment
Seregamil Posted July 30, 2013 Author Share Posted July 30, 2013 А если эвентхэндлеры в конец кода сдвинуть? Это и сделал) Спасибо) Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now