NetRaider Posted April 27, 2021 Share Posted April 27, 2021 (edited) I can't compile the code, I don't know why. I even changed the Player to Client and still it does not work....also they said that the Client has been changed to Player. Image Image 2 Is the Player changed to Client? Because in the docs it says Client, and in a tutorial video it says Player and on the forum someone said it is Player and not Client anymore. I am using rage server 1.1 I think ( Well the latest server that is currently available) The problem is this: The type or namespace name 'Player' could not be found (are you missing a using directive or an assembly reference?) I followed this tutorial https://www.youtube.com/watch?v=HLRFF6A36mM the code is here: https://pastebin.com/G4UPTbup I've tried adding this line of code: using GTANetworkMethods; but it still didn't repair the problem, because I have ended up having a problem with the item.SendChatMessage, even though it did stop marking the Player as an error I did replace the Player with Client, and still no success, the script does not load when the server runs if it is replaced with the Client instead of Player. Please do help, I don't know how to fix this problem Edited May 4, 2021 by NetRaider changing the title, adding more info Link to comment Share on other sites More sharing options...
Bonus Posted April 28, 2021 Share Posted April 28, 2021 Zitat Is the Player changed to Client? Here at the bottom of the first comment you can read compatibility changes for 0.3.7 -> 1.1 "C# only: "Client" got renamed with "Player"." So yes, RAGE 1.1 uses Player instead of Client - sounds much better for me. What is your problem now? Well, do you have enough knowledge about Visual Studio? Doesn't seem so, else you'd know that you are just using a totally wrong (old) dependency für RAGE API. Link to comment Share on other sites More sharing options...
DaNeo Posted April 28, 2021 Share Posted April 28, 2021 Looks like the wrong Bootstrapper.dll as dependency is loaded. Same like Bonus said! 1 Link to comment Share on other sites More sharing options...
NetRaider Posted April 28, 2021 Author Share Posted April 28, 2021 (edited) 48 minutes ago, DaNeo said: Looks like the wrong Bootstrapper.dll as dependency is loaded. Same like Bonus said! I have never experienced this thing to know how to solve it. I'm sure there are others that didn't knew it until they were told. Can someone show me how to do it? The bootstrapper.dll is located inside the server folder: server-files\dotnet\runtime\bootstrapper.dll Edited April 28, 2021 by NetRaider Link to comment Share on other sites More sharing options...
NetRaider Posted April 29, 2021 Author Share Posted April 29, 2021 (edited) Ok thanks to DaNeo, he helped me out, here is how to do it: 1.Go to your server folder and find bootstrapper.dll that is located in server-files\dotnet\runtime\bootstrapper.dll copy it and copy the Bootstrapper.xml file as well. 2.Create a folder named dependencies and paste the files inside there(Make the folder located inside your projects folder, your project folder is located near the .sln) 3. Open your project 4.In solution explorer right click on dependencies and select "Add Project Reference" 5. Browse and select the bootstrapper.dll that is located inside your project dependencies folder that you have created. 6.Uninstall the old version 0.3.7 GTANetworksAPI from the nuget package manager Note: Make sure you do create the folder dependencies inside your project folder that is located next to the project.sln, because it did not work for me without the folder part Edited May 1, 2021 by NetRaider Link to comment Share on other sites More sharing options...
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