{"id":15117949,"url":"https://github.com/openmultiplayer/omp-stdlib","last_synced_at":"2026-01-17T04:16:50.584Z","repository":{"id":104416011,"uuid":"483204554","full_name":"openmultiplayer/omp-stdlib","owner":"openmultiplayer","description":"Pawn includes","archived":false,"fork":false,"pushed_at":"2025-12-18T22:36:21.000Z","size":776,"stargazers_count":54,"open_issues_count":7,"forks_count":19,"subscribers_count":13,"default_branch":"master","last_synced_at":"2025-12-21T22:47:51.719Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Pawn","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/openmultiplayer.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"license.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-04-19T10:46:17.000Z","updated_at":"2025-12-19T19:02:49.000Z","dependencies_parsed_at":"2023-11-10T12:47:51.644Z","dependency_job_id":"efc5ff91-92b5-4c77-aaec-440839bf6627","html_url":"https://github.com/openmultiplayer/omp-stdlib","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/openmultiplayer/omp-stdlib","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openmultiplayer%2Fomp-stdlib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openmultiplayer%2Fomp-stdlib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openmultiplayer%2Fomp-stdlib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openmultiplayer%2Fomp-stdlib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openmultiplayer","download_url":"https://codeload.github.com/openmultiplayer/omp-stdlib/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openmultiplayer%2Fomp-stdlib/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28494648,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T02:39:23.645Z","status":"ssl_error","status_checked_at":"2026-01-17T02:34:19.649Z","response_time":85,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-09-26T01:46:05.427Z","updated_at":"2026-01-17T04:16:50.559Z","avatar_url":"https://github.com/openmultiplayer.png","language":"Pawn","funding_links":[],"categories":["Pawn"],"sub_categories":[],"readme":" open.mp Includes\n==================\n\nWelcome to the official open.mp includes, vastly upgraded and improved from the original versions - more functions, more correctness, more compile-time checks.  open.mp is the culmination of years of gradual improvements, fixes, and hard-learnt best practices for pawn code and SA:MP.  It is the direct continuation of several projects all with the same aim - making online San Andreas better for everyone:\n\nIf you are completely new to Pawn programming [click here for the beginner documentation](/documentation/readme-beginner.md), showing you how to get your first server started: [readme-beginner.md](/documentation/readme-beginner.md)\n\nIf you are an expert at Pawn programming [click here for the expert documentation](/documentation/readme-expert.md), detailing all the changes made and their reasons:  [readme-expert.md](/documentation/readme-expert.md)\n\nIf you are somewhere in between [click here for the intermediate documentation](/documentation/readme-intermediate.md), which just tells you how to upgrade your code:  [readme-intermediate.md](/documentation/readme-intermediate.md)\n\n Using sampctl\n---------------\n\nMany legacy libraries using sampctl will reference `samp-stdlib` and `pawn-stdlib` directly, which this library replaces entirely.  We need to trick sampctl in to not downloading those libraries so that this one takes precedence.  A new `@open.mp` branch has been added to both projects to achieve this.  They are completely empty so there are no duplicates of files.  Using this tag version in `pawn.json` in your project will ensure that and other dependencies including those libraries transitively will use the same tag, and then including `\u003copen.mp\u003e` in your main file will correctly set all the requisite defines to appear to those libraries like you have included `\u003ca_samp\u003e`.  Basically your `pawn.json` should first include:\n\n```json\n\t\"dependencies\": [\n\t\t\"openmultiplayer/omp-stdlib\",\n\t\t\"pawn-lang/samp-stdlib@open.mp\",\n\t\t\"pawn-lang/pawn-stdlib@open.mp\"\n\t],\n```\n\nAll other dependencies go ***after*** these three lines.\n\n Further Reading\n-----------------\n\nhttps://github.com/pawn-lang/samp-stdlib/tree/consistency-overhaul - The SA:MP includes updated with const-correctness and more tags.  \nhttps://github.com/samp-incognito/samp-streamer-plugin/pull/435 - A streamer plugin PR with more information on this tag system.  \n[https://github.com/pawn-lang/compiler/wiki/What's-new#const-correctness](https://github.com/pawn-lang/compiler/wiki/What's-new#const-correctness) - Compiler changes, incorrectly lists const-correctness as a \"breaking\" change.  \nhttps://github.com/pawn-lang/compiler/wiki/Const-Correctness - More information on const-correctness and updating code.  \nhttps://github.com/pawn-lang/sa-mp-fixes/ - Origin of many fixes, including several trivial ones integrated in to open.mp but not listed here.  \nhttps://github.com/pawn-lang/compiler/raw/master/doc/pawn-lang.pdf - For more information on strong and weak tags.  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenmultiplayer%2Fomp-stdlib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenmultiplayer%2Fomp-stdlib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenmultiplayer%2Fomp-stdlib/lists"}