Git Product home page Git Product logo

Comments (5)

Newbrict avatar Newbrict commented on August 15, 2024

So the error model is occuring because the server isn't sending the model files to the client
you need them in fastdl server. or require them by the server from the workshop.

not sure about the voice icon, I'm sure other people have had and fixed this issue, google it.

from objhunt.

jonnyboy0719 avatar jonnyboy0719 commented on August 15, 2024

To get new custom models, you need to make sure it actually downloads to the player. You can do so by having an auto script adding the new models in (if they are on the same folder) or add them manually to the list.

But since you use custom models that don't exist in the same folder, its best you add them manually. And you need todo the same for its textures (include vmt and vtf extension)

Note: both examples are for Server side not Client side. But it can be used on Shared (goes to both server and client).

Example ยค1:

-- Pokemon Gen 4 Model
resource.AddFile("models/pokemon/gen4/479/rotom.mdl")
resource.AddFile("models/pokemon/gen4/479/rotom.phy")
resource.AddFile("models/pokemon/gen4/479/rotom.dx80.vtx") -- Direct X 8 is no longer supported on the latest Source Engine, so this file can be deleted from the drive.
resource.AddFile("models/pokemon/gen4/479/rotom.dx90.vtx")
resource.AddFile("models/pokemon/gen4/479/rotom.sw.vtx")
resource.AddFile("models/pokemon/gen4/479/rotom.vvd")

Example ยค2 (if Workshop):

-- If the models exist on the workshop, then it will be easier for you.
--[[
       This gets the ID from workshop, example:
       http://steamcommunity.com/workshop/filedetails/?id=#ID

       And where it says #ID, thats where the ID goes. And our ID is 104606562. So thats what we are going to add!
--]]
resource.AddWorkshop( "104606562") -- Achievement viewer example.

from objhunt.

Newbrict avatar Newbrict commented on August 15, 2024

@jonnyboy0719 ๐Ÿ‘ very nice, thanks for helping him out!

from objhunt.

jonnyboy0719 avatar jonnyboy0719 commented on August 15, 2024

@Newbrict Happy to help! ๐Ÿ˜ƒ

from objhunt.

ZachLucasDev avatar ZachLucasDev commented on August 15, 2024

@jonnyboy0719 YOU ARE AN AMAZING PERSON!!!! Dont let ANYONE tell you otherwise!

from objhunt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.