Skip to content

Instantly share code, notes, and snippets.

@desulaid
Last active April 1, 2019 23:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save desulaid/7cb00452c5791eaa2624142d9d748880 to your computer and use it in GitHub Desktop.
Save desulaid/7cb00452c5791eaa2624142d9d748880 to your computer and use it in GitHub Desktop.
Compile a SAMP mod
@echo off
set gamemode_name=%1
set gamemode_directory=%cd%
set gamemode_complier_path=%gamemode_directory%\complier
set gamemode_path=%gamemode_directory%\gamemodes\%gamemode_name%
title I'll compile your gamemode :)
cd %gamemode_complier_path%
pawncc.exe %gamemode_path%.pwn -d2 -iinclude -o%gamemode_path%.amx -;+
cd %gamemode_directory%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment