All Projects → esx-framework → Skinchanger

esx-framework / Skinchanger

Licence: gpl-3.0
FXServer SkinChanger

Programming Languages

lua
6591 projects

Labels

Projects that are alternatives of or similar to Skinchanger

WinForm.UI
WinForm 皮肤,自定义控件
Stars: ✭ 100 (+400%)
Mutual labels:  skin
Neogfx
Cross-platform GPU-oriented C++ application/game framework
Stars: ✭ 362 (+1710%)
Mutual labels:  skin
Android Skin Support
Android-skin-support is an easy dynamic skin framework to use for Android, Only one line of code to integrate it. Android 换肤框架, 极低的学习成本, 极好的用户体验. "一行"代码就可以实现换肤, 你值得拥有!!!
Stars: ✭ 5,706 (+28430%)
Mutual labels:  skin
Easy
No description or website provided.
Stars: ✭ 54 (+170%)
Mutual labels:  skin
Mccustomskinloader
Custom Skin Loader for Minecraft
Stars: ✭ 261 (+1205%)
Mutual labels:  skin
Govatar
Avatar generation library for GO language
Stars: ✭ 419 (+1995%)
Mutual labels:  skin
UE4EditorCustomize
Change UE4 Editor to a new Style.
Stars: ✭ 38 (+90%)
Mutual labels:  skin
Weblaf
WebLaF is a fully open-source Look & Feel and component library written in pure Java for cross-platform desktop Swing applications.
Stars: ✭ 930 (+4550%)
Mutual labels:  skin
Qssstylesheeteditor
Editor for qt stylesheet (qss). Real-time preview, and user can define varibles in qss.
Stars: ✭ 356 (+1680%)
Mutual labels:  skin
Threshold Skin
A Windows 10 UWP style skin for Steam
Stars: ✭ 590 (+2850%)
Mutual labels:  skin
adminer-bootstrap-like
Adminer Bootstrap-Like Design
Stars: ✭ 46 (+130%)
Mutual labels:  skin
MineRender
Quick, Easy, Interactive 3D/2D Renders of Minecraft
Stars: ✭ 76 (+280%)
Mutual labels:  skin
Unitydarkskin
Switcher of UI theme in Unity Editor (light -> dark) (.NET, WPF)
Stars: ✭ 466 (+2230%)
Mutual labels:  skin
steam-chat-skin
A customisable theme for the Steam Chat / Friends
Stars: ✭ 30 (+50%)
Mutual labels:  skin
Sakurakit
🤡SakuraKit, a lightweight and powerful library for application to switching themes or skins.
Stars: ✭ 682 (+3310%)
Mutual labels:  skin
Lauhdutin
A Rainmeter skin for launching games.
Stars: ✭ 65 (+225%)
Mutual labels:  skin
Upmetroskin
This non-official addon for Metro for Steam fixes bugs with the current version and adds optional content for you to choose from.
Stars: ✭ 377 (+1785%)
Mutual labels:  skin
Ultramodernui
The Ultra-Modern User Interface is a new interface with a style like the most recent installers for NSIS 3 (Nullsoft Scriptable Install System), the tool that allows programmers to create such installers for Windows.
Stars: ✭ 25 (+25%)
Mutual labels:  skin
Idaskins
Advanced skinning plugin for IDA Pro
Stars: ✭ 832 (+4060%)
Mutual labels:  skin
Monstercat Visualizer
A real time audio visualizer for Rainmeter similar to the ones used in the Monstercat videos.
Stars: ✭ 571 (+2755%)
Mutual labels:  skin

skinchanger

skinchanger is a resource that makes it easy to set and get player ped clothing. It supports the freemode peds mp_m_freemode_01 and mp_f_freemode_01.

Download & Installation

Using fvm

fvm install --save esx-org/skinchanger

Using Git

cd resources
git clone https://github.com/ESX-Org/skinchanger skinchanger

Manually

Installation

  • Add this to your server.cfg:
start skinchanger

Usage

local isMale = true

local skin = {
	sex          = 1,
	face         = 0,
	skin         = 0,
	beard_1      = 0,
	beard_2      = 0,
	beard_3      = 0,
	beard_4      = 0,
	hair_1       = 0,
	hair_2       = 0,
	hair_color_1 = 0,
	hair_color_2 = 0,
	tshirt_1     = 0,
	tshirt_2     = 0,
	torso_1      = 0,
	torso_2      = 0,
	decals_1     = 0,
	decals_2     = 0,
	arms         = 0,
	pants_1      = 0,
	pants_2      = 0,
	shoes_1      = 0,
	shoes_2      = 0,
	mask_1       = 0,
	mask_2       = 0,
	bproof_1     = 0,
	bproof_2     = 0,
	chain_1      = 0,
	chain_2      = 0,
	helmet_1     = 0,
	helmet_2     = 0,
	glasses_1    = 0,
	glasses_2    = 0,
}

-- Load freemode model
TriggerEvent('skinchanger:loadDefaultModel', isMale)

-- Load skin
TriggerEvent('skinchanger:loadSkin', skin)

-- you can also load only some components :
TriggerEvent('skinchanger:loadSkin', {
	sex          = 0,
	beard_1      = 0,
	beard_2      = 0,
})

-- Get list of components and maxVals
TriggerEvent('skinchanger:getData', function(components, maxVals)
	print('Components => ' .. json.encode(components))
	print('MaxVals => ' .. json.encode(maxVals))
end)

-- Get current skin
TriggerEvent('skinchanger:getSkin', function(skin)
	print(json.encode(skin))
end)

Legal

License

skinchanger - make your own skin!

Copyright (C) 2015-2020 Jérémie N'gadi

This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version.

This program Is distributed In the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty Of MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License For more details.

You should have received a copy Of the GNU General Public License along with this program. If Not, see http://www.gnu.org/licenses/.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].