Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/09/17 in all areas

  1. It will be introduced in version 0.2. Snippet from Announcement of 0.2: Serverside scripting. Serverside scripting got great additions too. Advanced pool functions, synced full ped customization API, synced vehicle customization, synced ped animations etc... Well, this list is soo huge and we will share it with final 0.2 changelog.
    1 point
  2. "setdimension": (player, args) => { let id = parseInt(args[1]); if(global.dimensions[id] && global.dimensions[id] > 63) { player.outputChatBox("Dimension is full"); } else { if(global.dimensions[id]) { global.dimensions[id]++; global.dimensions[player.dimension]--; player.dimension = id; player.outputChatBox("You have set your dimension!"); } else { global.dimensions[id] = 1; global.dimensions[player.dimension]--; player.dimension = id; player.outputChatBox("You have set your dimension!"); } } }, Кусок кода с исходника. Попробуй сам разобраться.
    1 point
×
×
  • Create New...