Recompiling code: Difference between revisions

From Fortress Blast
Jump to navigationJump to search
(Clarification)
m (6 revisions imported: Importing pages from old wiki)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
Before continuing, make sure that Fortress Blast is [[Installation|installed and working]] on your test server.
Before continuing, make sure that Fortress Blast is [[Installation|installed and working]] on your server.


The <code>tf/addons/sourcemod/scripting/fortress_blast.sp</code> file contains the uncompiled code that you can freely edit. To edit it, you need to have an understanding of SourcePawn (similar to C++).
The <code>tf/addons/sourcemod/scripting/fortress_blast.sp</code> file contains the uncompiled code that you can freely edit. To edit it, you need to have an understanding of SourcePawn (similar to C++).
Line 10: Line 10:
Once the dependencies are installed, you can compile your changes by dragging the uncompiled code file into <code>compile.exe</code> or <code>compile.sh</code> in the scripting directory. The compiler will create the file <code>tf/addons/sourcemod/scripting/compiled/fortress_blast.smx</code>. Move this into the <code>tf/addons/sourcemod/plugins</code> directory.
Once the dependencies are installed, you can compile your changes by dragging the uncompiled code file into <code>compile.exe</code> or <code>compile.sh</code> in the scripting directory. The compiler will create the file <code>tf/addons/sourcemod/scripting/compiled/fortress_blast.smx</code>. Move this into the <code>tf/addons/sourcemod/plugins</code> directory.


If the changed code compiles successfully and runs as expected in-game, you can fork the [https://github.com/Fortress-Blast/Fortress-Blast main repository] and submit a pull request with a detailed description of what your changes do.
If the changed code compiles successfully and runs as expected in-game, you can fork the {{link|github|Fortress-Blast|main repository}} and submit a pull request with a detailed description of what your changes do.

Latest revision as of 21:22, 6 June 2023

Before continuing, make sure that Fortress Blast is installed and working on your server.

The tf/addons/sourcemod/scripting/fortress_blast.sp file contains the uncompiled code that you can freely edit. To edit it, you need to have an understanding of SourcePawn (similar to C++).

Note that any changes you make to the uncompiled code will not be reflected in-game. Before you compile any changes to the code, you first need Fortress Blast's dependencies:

  • Download More Colors and place the .inc file into tf/addons/sourcemod/scripting/include.
  • Download Advanced MOTD and place the .inc file into the same directory as above.

Once the dependencies are installed, you can compile your changes by dragging the uncompiled code file into compile.exe or compile.sh in the scripting directory. The compiler will create the file tf/addons/sourcemod/scripting/compiled/fortress_blast.smx. Move this into the tf/addons/sourcemod/plugins directory.

If the changed code compiles successfully and runs as expected in-game, you can fork the Github icon.png main repository and submit a pull request with a detailed description of what your changes do.