{"id":152136,"date":"2026-06-09T07:35:38","date_gmt":"2026-06-09T04:35:38","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/tarso\/"},"modified":"2026-06-09T07:35:38","modified_gmt":"2026-06-09T04:35:38","slug":"tarso","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/tarso\/","title":{"rendered":"Tarso"},"content":{"rendered":"<p>Tarso is a library datapack containing general mathematical utilities for score calculations **without** using macro functions.<\/p>\n<p>## Usage<\/p>\n<p>### Calculation<\/p>\n<p>To calculation, put the score in `math.target` and (maybe) `math.source`, then call operations, the score returned will be presented in `math.target`.<\/p>\n<p>| Operation | Function | General Expression | Desciption |<br \/>\n| &#8212; | &#8212; | &#8212; | &#8212; |<br \/>\n| Left Shift | `math:ls` | `math.target = math.target >> math.source` |  |<br \/>\n| Right Shift | `math:rs` | `math.target = math.target << math.source` |  |\n| Addition | `math:add` | `math.target = math.target + math.source` |  |\n| Multiplication | `math:mul` | `math.target = math.target * math.source` |  |\n| Power | `math:pow` | `math.target = math.target ^ math.source` |  |\n| Subtraction | `math:sub` | `math.target = math.target - math.source` |  |\n| Division | `math:div` | `math.target = math.target \/ math.source` |  |\n| Logarithm | `math:log` | `math.target = log math.source (math.target)` |  |\n| Common Logarithm | `math:lg` | `math.target = log 10 (math.target)` |  |\n| Natural Logarithm | `math:ln` | `math.target = log 2 (math.target)` |  |\n| Square Root | `math:sqrt` | `math.target = sqrt(math.target)` |  |\n| Modulus | `math:mod` | `math.target = math.target % math.source` |  |\n| Remainder | `math:rem` | `math.target = math.target % math.source` |  |\n| Negativity | `math:neg` | `math.target = -math.target` |  |\n| Absolutation | `math:abs` | `math.target = (math.target < 0) ? -math.target : math.target` |  |\n| Sign | `math:sig` | `math.target = math.target \/ (math.target < 0) ? -math.target : math.target` |  |\n| Factorial | `math:fact` | `math.target = math.target!` |  |\n| Permutation | `math:perm` | `math.target = P(math.target, math.source)` |  |\n| Combination | `math:comb` | `math.target = C(math.target, math.source)` |  |\n| Hypot | `math:hyp` |`math.target = sqrt(**math.target + **math.source)` |  |\n| Vector | `math:vec` | `math.x = CORDIC(math.target).x` `math.y = CORDIC(math.target).y` | Precision is controled by `math.source`. |\n| Tangent | `math:tan` | `math.target = tan(math.target)` | Precision is controled by `math.source`. |\n| Cotangent | `math:cot` | `math.target = cot(math.target)` | Precision is controled by `math.source`. |\n| Sine | `math:sin` | `math.target = sin(math.target)` | Precision is controled by `math.source`. |\n| Cosine | `math:cos` | `math.target = cos(math.target)` | Precision is controled by `math.source`. |\n\n### The Stack\n\nTarso comes with a stack of 16 sorts. To transfer scores, put the score in `math.buffer` before pushing and the score poped out will be presented in `math.buffer`.\n\n| Operation | Function |\n| --- | --- |\n| Push | `math:push` |\n| Pop | `math:pop` |\n| Seek | `math:seek` |\n\n## Notes\n\n1. Objectives other than those belong to the stack can be overwritten during calculations.\n\n2. Pushing a score into the stack while it's full make no sense.\n\n## FAQ\n\n### 1. Why is the natural logarithm inaccurate?\n\nIt cannot be fixed except using large-number calculation, which is extremely slow. Currently it has a base of 2.\n\n<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Mathematical utilities for score calculations.<\/p>\n","protected":false},"featured_media":152137,"template":"","meta":{"_minecraft_slug":"tarso","_minecraft_project_id":"nTHtdr7b","_minecraft_author":"CookedSeafood","_minecraft_license":"GPL-3.0-or-later","_minecraft_downloads":87,"_minecraft_follows":0,"_minecraft_client_side":"optional","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"tarso.zip","_minecraft_size_bytes":33294,"_minecraft_version_count":1,"_minecraft_updated_at":"2026-05-15T22:35:28.898895Z","_minecraft_date_created":"2024-03-25T05:20:55.608183Z","_minecraft_date_modified":"2024-06-18T15:20:40.743693Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/tarso","_minecraft_icon_attachment_id":152137,"_minecraft_imported_at":"2026-06-09T04:35:39+00:00","_minecraft_import_hash":"8002f03fdbb9aae9eb8f410e5beaacb2","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[84,873,92],"mod_loader":[86],"minecraft_version":[93,94,101,102,62,37],"class_list":["post-152136","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-datapack","mod_category-library","mod_category-utility","mod_loader-datapack","minecraft_version-1-20-3","minecraft_version-1-20-4","minecraft_version-1-20-5","minecraft_version-1-20-6","minecraft_version-1-21","minecraft_version-1-21-1"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Tarso - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/tarso\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Tarso - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Mathematical utilities for score calculations.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/tarso\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tarso\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tarso\\\/\",\"name\":\"Tarso - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tarso\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tarso\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/tarso-icon-a3116de7c9995fd164bdb261242be75bd388abe7.png\",\"datePublished\":\"2026-06-09T04:35:38+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tarso\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tarso\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tarso\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/tarso-icon-a3116de7c9995fd164bdb261242be75bd388abe7.png\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/tarso-icon-a3116de7c9995fd164bdb261242be75bd388abe7.png\",\"width\":128,\"height\":128},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tarso\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Tarso\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Tarso - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/tarso\/","og_locale":"en_US","og_type":"article","og_title":"Tarso - Minecraft","og_description":"Mathematical utilities for score calculations.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/tarso\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/tarso\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/tarso\/","name":"Tarso - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/tarso\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/tarso\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/tarso-icon-a3116de7c9995fd164bdb261242be75bd388abe7.png","datePublished":"2026-06-09T04:35:38+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/tarso\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/tarso\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/tarso\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/tarso-icon-a3116de7c9995fd164bdb261242be75bd388abe7.png","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/tarso-icon-a3116de7c9995fd164bdb261242be75bd388abe7.png","width":128,"height":128},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/tarso\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"Tarso"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/152136","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/152137"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=152136"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=152136"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=152136"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=152136"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}