Search the Community
Showing results for tags 'Code'.
-
Hey there, folks! I recently asked myself, how I can retrieve the current FPS of a client, because there is no inbuild function at all. Here's a small snippet for retrieving the current FPS in TypeScript (if you want to use it in JS just compile it with a TS transcompiler or adapt it 😐). /* Copyright 2019 Vincent Heins/TheMysteriousVincent Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ class FPSCalculator { private fps = 0; constructor() { let lastFrameCount = this.getFrameCount(); setInterval(() => { this.fps = this.getFrameCount() - lastFrameCount; lastFrameCount = this.getFrameCount(); }, 1000); } public get(): number { return this.fps; } private getFrameCount(): number { return mp.game.invoke('0xFC8202EFC642E6F2') as number; // '0xFC8202EFC642E6F2' is a method of GTA5 which returns the frame count since the game was started (see http://www.dev-c.com/nativedb/func/info/fc8202efc642e6f2 for ref.) } } export const FPS = new FPSCalculator(); Or, if you prefer a Gist: https://gist.github.com/TheMysteriousVincent/42a4b00b4c34b6dd27423e48bd5c6c52 Or additionally, if you prefer the download section of RageMP: Sincerely, ~Vincent
- 2 replies
-
- 1
-
-
- FPS
- Clientside
-
(and 8 more)
Tagged with:
-
Hi there! Question for you, since I'm not sure if I know the correct answer: What is the maximum amount of objects manageable by the RageMP server? For clarification: I especially mean those kind of objects that are created dynamically during runtime. My thoughts on that: Since the NetHandle class (C#) has this signature for its constructor: NetHandle(ushort handle, EntityType type) Now, with this constructor we know that the maximum amount of handles is 65535 (since an ushort has an integer range of 0-65535). But what about the EntityType param? How is the EntityType to be interpreted: It either could be this: "A unique object handle across different EntityType's (which means that there are only 65535 objects possible to be created)" or this: "A local unique object handle which is unique within a single EntityType (which would be (4 * 65535; 4 because of Player, Vehicle, Object and Pickup type; see the enum below) objects possible to be created)" public enum EntityType { Player = 0, Vehicle = 1, Object = 2, Pickup = 3, Blip = 4, Checkpoint = 5, Marker = 6, Colshape = 7, TextLabel = 8 } Or am I on the wrong way anyway? I am interested to know the technical limit. Happy discussing. Sincerely, Vincent
-
Hello, I have one suggestion for team RageMP, please create extension for Microsoft Visual Studio Code. When I write scripts, I have to look at api constantly. Please, consider my suggestion
-
Hello people, I'v just started learning JavaScript with SoloLearn. Two years ago i started to get into c++ with this cours. I think with this webside or by using their app you can learn JavaScript and other languages easily. They can teach you JavaScript, C++, Python, Java, PHP, HTML, Swift, CSS and some others, as well. You have to read what they show you and then they will ask you something about what you did read. After giving the right answer you'll get into the next step. If you have problems, you can get help or talk with other users. Start: https://www.sololearn.com/ JavaScript: https://www.sololearn.com/Play/JavaScript Courses: https://www.sololearn.com/Courses/
- 2 replies
-
- JavaScript
- Java
-
(and 4 more)
Tagged with: