Jump to content

Flow

Members
  • Posts

    159
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Flow

  1. There is no "THE RP gamemode" - you have to get a premade (probably stolen script) or code one yourself. There are also open source ones on ressources.
  2. colshape anlegen -> colshape on enter -> porte spieler zu xy
  3. returns true if object of type AtmObjectHash is found. Of course replace it with real object hash of atm. if true, fire your atm functions var foundATM = mp.game.object.getClosestObjectOfType(player.position.x, player.position.y, player.position.z, parseFloat(radius), AtmObjectHash, false, true, true);
  4. "color": [239, 22, 14, 1],
  5. Hey Soupiest. For us this mod replaces things (e.g. "nacked" body of freemode male has no feet) - wondering if we are using this wrong but it seems not synced and replacing things. best regards
  6. Die Player Serial stellt übrigens die Hardware ID des Systems dar und nicht die Lizenz von GTA....
  7. Flow

    HTML/CSS

    like in "very big big" or just little big? Seriously what do you expect with those "informations" you give
  8. Musst du doch wissen was du für ein Script hast und wie die Datenbank aussieht
  9. Write a ticket on their forum. Much faster than mails
  10. Flow

    Cuffs (Follow me)

    <ironic>I'm absolutely sure he will</ironic>
  11. Problemlösungsthread hier im Forum schauen
  12. Du suchst Hilfe für GT-MP auf Rage.mp???
  13. He is not updating this mod with new features. Just bug fixes. You are on your own
  14. Shit happens
  15. you don't have console.log in clientside. you would have to code your own log function. try a mp.game.graphics.notify("worked") instead
  16. hetzner was long time shit talked but i have to say that i never had a root server (not vps) which was that cheap and stable like they have. also ddos protection is fair enough
  17. Makes absolute sense to have it more visible, yes.
  18. Flow

    NativeUI

    Hardcoded to max Screen Resolution of 1920 to 1080? If ppl using resolutions like 2500 x XXXX it's not displayed? e.g. when i set X coord of the menu to above 1920
  19. Flow

    Menu

    Well you should think in general about what you want to do here. Why do you fetch all results in Database ans WHILE fetching you check if the item is for the player? Also do you think its a good idea to always make a direct mysql interaction everytime somebody opens inventory? Why not caching in a player variable? There is to less code to help you out but i guess you always overwrite the inventory . You have to set a variable on client side above your function and let the function fill it. But as i said i wouldn't do it this way
  20. https://wiki.rage.mp/index.php?title=Vehicle::numberPlate
  21. "request player is in a car" is simply wrong. If player would be in a car, nothing would be triggered. Also you can write if ( player.vehicle) return; instead of if ( player.vehicle){ return; }
  22. Seems not to work to get current ammo in players weapon clip. alsways returns a strange value above 20.000: var weapon_hash = localPlayer.weapon; var ammoInClip = mp.game.invoke("0x2E1202248937775C", localPlayer.handle, weapon_hash, false); // returns bullshit
  23. Flow

    Selfie system

    Then it got fixed i guess... Thx
  24. @Captien this is an error: mp.events.add('entityStreamIn', (entity) => { if (entity.type === 'vehicle' && entity.getClass() === 18 && entity.hasVariable('silentMode')) localPlayer.vehicle.getVariable('silentMode') ? entity.setSirenSound(true) : entity.setSirenSound(false); }); should be mp.events.add('entityStreamIn', (entity) => { if (entity.type === 'vehicle' && entity.getClass() === 18 && entity.hasVariable('silentMode')) entity.getVariable('silentMode') ? entity.setSirenSound(true) : entity.setSirenSound(false); });
×
×
  • Create New...