Jump to content

Search the Community

Showing results for tags 'PHP'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • RAGE Multiplayer
    • Announcements
    • Discussion
    • Suggestions
  • Scripting
    • Scripting
    • Resources
  • Community
    • Support
    • Servers
    • Media Gallery
  • Non-English
    • Русский - Russian
    • Français - French
    • Deutsch - German
    • Espanol - Spanish
    • Română - Romanian
    • Portuguesa - Portuguese
    • Polski - Polish

Categories

  • Scripts
  • Gamemodes
  • Libraries
  • Plugins
  • Maps
  • Tools

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Facebook


Youtube


Skype


Web


VK

Found 4 results

  1. The new xUCP Free V5 Version is a completely new development. Download: https://github.com/DerStr1k3r/xucp-free-v5/releases/tag/5.1.1457 Github: https://github.com/DerStr1k3r/xucp-free-v5 ## xUCP Free V5 Admin Level Rank: * SQL: xucp_accounts * SQL TABLE: adminlevel =>set in your account to 120 ## Prerequisite for using the xUCP Free V5: * 1. MySQL servers * 2. Web server (XAMPP is not supported!) * 3. Mail server * 4. Php 8.2.24 or newer * 5. PHP8-PDO * 6. SSL ## Functions of the xUCP Free V5: * 1. Login & Register System with Discord OAuth2 * 2. Staff Tools ( User Changer, Playerlist, News Creator, Rules Manager, Whitelist Manager, Keyboard Manager ) * 3. Language System ( English & German ) * 4. Support system * 5. Edit profile * 6. Site Settings * 7. Clients & Servers * 8. Server Status System * 9. BB-Code-Editor System * 10. Game Server Status System * 11. Class Admin Settings System * 12. Team Control System * 13. Web Site System: Homepage * 14. Web Site System: Imprint * 15. Discord Message System * 15. Uptime System * 16. xUCP Free V5 Setup Check System * 17. xUCP Free V5 Update Status System * 18. xUCP Free V5 ENV File Loader System for xUCP Free V5 Site Config System best regards DerStr1k3r
  2. We are a professional heavy text based roleplay server in need of a web developer that can help us reach our next goals. Our community is small at the moment but we are a very active community and passionate team, This is obviously a long-term gig and you will be paid per commission. I. REQUIREMENTS Advanced knowledge of at least one of the following: JS PHP II. EXPECTATIONS Ability to meet deadlines. Able to work in a team and share ideas. Past experience in UCP development Must know RAGE API and have proven experience in scripting for RAGE, as well as a portfolio to be presented. If you're looking to be part of a fun community as a developer, and you believe you meet your requirements and expectations, please send me a message on discord hadnan94#4756 Website: https://vibrantrp.com/ Discord: https://discord.gg/dDfrbXUvmB
  3. Version 2.1

    497 downloads

    User Control System for all Roleplay Projects! Have fun! GitHub: https://github.com/eodclan/User-Control-System Please note: The upload avatar folder needs write access! Version: 2.5 Changelog: Added: New Site Settings Feature Added: Download Section Changed: Themes from UCP ( Left Navigation ) Changed: Login System Changed: Session System for the Site Settings Feature And a lot of minor changes. Main requirements: 1. MySQL Server 2. Webserver 3. Php 8.x or newer Features requirements: 1. Login & Register System 2. Staff Tools ( User Changer, Playerlist, News Creator, Rules Creator ) 3. Language System ( English & German ) 4. Support System 5. Profile Changer 6. Twitter System 7. and more Have fun DerStr1k3r
  4. Доброго времени суток. Хочу представить пример парсинга мастер-листа и получения информации о вашем сервере. Скриншот: Код на PHP: $ip = '91.76.227.40'; // Ip адрес сервера $port = 22005; // Port сервера $ch = curl_init('https://ml.rage.mp/servers'); curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true ); curl_setopt( $ch, CURLOPT_SSL_VERIFYHOST, false ); curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, false ); $resp = curl_exec( $ch ); curl_close( $ch ); $resp = json_decode($resp , true); foreach($resp as $val) { if($val['ip'] == $ip and $val['port'] == $port) { echo 'PHP<hr>Id: '.$val['_id']; echo '<br>Название: '.$val['name']; echo '<br>Слотов: '.$val['slots']; echo '<br>Игроков: '.$val['players']; echo '<br>Uptime: '.$val['uptime']; break; } } Код на JavaScript: var ip = '91.76.227.40', // Ip адрес сервера port = 22005; // Port сервера $.getJSON('https://ml.rage.mp/servers', function(data) { $.each(data, function(key, val) { if(ip == val.ip && port == val.port) { document.write('JavaScript<hr>Id: '+val._id); document.write('<br>Название: '+val.name); document.write('<br>Слотов: '+val.slots); document.write('<br>Игроков: '+val.players); document.write('<br>Uptime: '+val.uptime); return false; } }); }); Библиотека JQuery обязательна!
×
×
  • Create New...