<!-- BEGIN TEMPLATE: postbit_external -->
<div><font color="Red"><font size="6">DrugShop for JailBreak</font><br /></font><br /><br /><b>Introduction:</b><br />Terrorists accumulate cash by winning rounds and can buy one of 5 drugs when they reach $16000.<br />10 drugs of a certain type can be redeemed for a pistol. The pistol given is determined by which drug is being redeemed. <br /><br /><b>Setup:</b><br />Add the following to your databases.cfg in /addons/sourcemod/config/<br /><!-- BEGIN TEMPLATE: bbcode_php_printable -->
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px">PHP Code:</div>
<div class="alt2">
<hr />
<code style="white-space:nowrap">
<div dir="ltr" style="text-align:left;">
<!-- php buffer start --><code><span style="color: #000000">
<span style="color: #0000BB"> </span><span style="color: #DD0000">"drugshop"<br /> </span><span style="color: #007700">{<br /> </span><span style="color: #DD0000">"driver" "mysql"<br /> "host" "<your-database-host>"<br /> "database" "<your-database-name>"<br /> "user" "<username>"<br /> "pass" "<password>"<br /> </span><span style="color: #007700">}
<br /></span><span style="color: #0000BB"></span>
</span>
</code><!-- php buffer end -->
</div>
</code>
<hr />
</div>
</div>
<!-- END TEMPLATE: bbcode_php_printable -->The plugin will automatically create the necessary tables.<br /><br />Drag and drop drugshop.smx to your plugins directory: /addons/sourcemod/plugins/<br /><br /><b>Commands:</b><br /><!-- BEGIN TEMPLATE: bbcode_php_printable -->
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px">PHP Code:</div>
<div class="alt2">
<hr />
<code style="white-space:nowrap">
<div dir="ltr" style="text-align:left;">
<!-- php buffer start --><code><span style="color: #000000">
<span style="color: #0000BB">say </span><span style="color: #007700">!</span><span style="color: #0000BB">drugshop in chat to open the menu
<br /></span>
</span>
</code><!-- php buffer end -->
</div>
</code>
<hr />
</div>
</div>
<!-- END TEMPLATE: bbcode_php_printable --><b>Forwards:</b><br /><!-- BEGIN TEMPLATE: bbcode_php_printable -->
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px">PHP Code:</div>
<div class="alt2">
<hr />
<code style="white-space:nowrap">
<div dir="ltr" style="text-align:left;">
<!-- php buffer start --><code><span style="color: #000000">
<span style="color: #0000BB"></span><span style="color: #FF8000">/**<br /> * Called after a drug purchase is made.<br /> *<br /> * @param auth Full steam ID of client making purchase.<br /> * @param drug_name Name of the drug being purchased.<br /> * @param drug ID of the drug being purchased.<br /> * @param num_drugs Number of drugs purchased.<br /> * @noreturn<br /> */<br /></span><span style="color: #0000BB">forward OnDrugBuy</span><span style="color: #007700">(const </span><span style="color: #0000BB">String</span><span style="color: #007700">:</span><span style="color: #0000BB">auth</span><span style="color: #007700">[], const </span><span style="color: #0000BB">String</span><span style="color: #007700">:</span><span style="color: #0000BB">drug_name</span><span style="color: #007700">[], </span><span style="color: #0000BB">drug</span><span style="color: #007700">, </span><span style="color: #0000BB">num_drugs</span><span style="color: #007700">);<br /><br /></span><span style="color: #FF8000">/**<br /> * Called after a drug is sold.<br /> *<br /> * @param auth Full steam ID of client making purchase.<br /> * @param drug_name Name of the drug being purchased.<br /> * @param drug ID of the drug being purchased.<br /> * @param num_drugs Number of drugs sold.<br /> * @noreturn<br /> */<br /></span><span style="color: #0000BB">forward OnDrugSell</span><span style="color: #007700">(const </span><span style="color: #0000BB">String</span><span style="color: #007700">:</span><span style="color: #0000BB">auth</span><span style="color: #007700">[], const </span><span style="color: #0000BB">String</span><span style="color: #007700">:</span><span style="color: #0000BB">drug_name</span><span style="color: #007700">[], </span><span style="color: #0000BB">drug</span><span style="color: #007700">, </span><span style="color: #0000BB">num_drugs</span><span style="color: #007700">);
<br /></span><span style="color: #0000BB"></span>
</span>
</code><!-- php buffer end -->
</div>
</code>
<hr />
</div>
</div>
<!-- END TEMPLATE: bbcode_php_printable --><b>Natives:</b><br /><!-- BEGIN TEMPLATE: bbcode_php_printable -->
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px">PHP Code:</div>
<div class="alt2">
<hr />
<code style="white-space:nowrap">
<div dir="ltr" style="text-align:left;">
<!-- php buffer start --><code><span style="color: #000000">
<span style="color: #0000BB"></span><span style="color: #FF8000">/**<br /> * Add (or remove by specifying -ve num_drugs) drugs to/from a player.<br /> *<br /> * @param auth Full steam id of client making purchase.<br /> * @param drug Name of the drug being purchased.<br /> * @param num_drugs Number of drugs purchased.<br /> * @noreturn<br /> */<br /></span><span style="color: #0000BB">native DrugShop_AddDrugs</span><span style="color: #007700">(const </span><span style="color: #0000BB">String</span><span style="color: #007700">:</span><span style="color: #0000BB">auth</span><span style="color: #007700">[], </span><span style="color: #0000BB">drug</span><span style="color: #007700">, </span><span style="color: #0000BB">num_drugs</span><span style="color: #007700">);
<br /></span><span style="color: #0000BB"></span>
</span>
</code><!-- php buffer end -->
</div>
</code>
<hr />
</div>
</div>
<!-- END TEMPLATE: bbcode_php_printable --><b>Changelog:</b><br /><!-- BEGIN TEMPLATE: bbcode_php_printable -->
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px">PHP Code:</div>
<div class="alt2">
<hr />
<code style="white-space:nowrap">
<div dir="ltr" style="text-align:left;">
<!-- php buffer start --><code><span style="color: #000000">
<span style="color: #0000BB">v1.0.0 Initial Release
<br /></span>
</span>
</code><!-- php buffer end -->
</div>
</code>
<hr />
</div>
</div>
<!-- END TEMPLATE: bbcode_php_printable --><b>To Do:</b><br /><!-- BEGIN TEMPLATE: bbcode_php_printable -->
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px">PHP Code:</div>
<div class="alt2">
<hr />
<code style="white-space:nowrap">
<div dir="ltr" style="text-align:left;">
<!-- php buffer start --><code><span style="color: #000000">
<span style="color: #0000BB">
<br /></span>
</span>
</code><!-- php buffer end -->
</div>
</code>
<hr />
</div>
</div>
<!-- END TEMPLATE: bbcode_php_printable --></div>
<br /> <div style="padding:6px">
<fieldset class="fieldset">
<legend>Attached Files</legend>
<table cellpadding="0" cellspacing="3" border="0">
<!-- BEGIN TEMPLATE: postbit_attachment -->
<tr>
<td><img class="inlineimg" src="https://forums.allie...attach/inc.gif"alt="File Type: inc" width="16" height="16" border="0" style="vertical-align:baseline" /></td>
<td>
<a href="https://forums.allie...rugshop.inc</a>(355 Bytes)
</td>
</tr>
<!-- END TEMPLATE: postbit_attachment --><!-- BEGIN TEMPLATE: postbit_attachment -->
<tr>
<td><img class="inlineimg" src="https://forums.allie.../attach/sp.gif"alt="File Type: sp" width="16" height="16" border="0" style="vertical-align:baseline" /></td>
<td>
<a href="http://www.sourcemod...72"><strong>GetPlugin</strong></a> or
<a href="https://forums.allie...1421929808">GetSource</a> (drugshop.sp - 11.8 KB)
</td>
</tr>
<!-- END TEMPLATE: postbit_attachment --><!-- BEGIN TEMPLATE: postbit_attachment -->
<tr>
<td><img class="inlineimg" src="https://forums.allie...attach/smx.gif"alt="File Type: smx" width="16" height="16" border="0" style="vertical-align:baseline" /></td>
<td>
<a href="https://forums.allie...rugshop.smx</a>(14.5 KB)
</td>
</tr>
<!-- END TEMPLATE: postbit_attachment -->
</table>
</fieldset>
</div>
<!-- END TEMPLATE: postbit_external -->
Wyświetl pełny artykuł
Witamy w Nieoficjalnym polskim support'cie AMX Mod X
Witamy w Nieoficjalnym polskim support'cie AMX Mod X, jak w większości społeczności internetowych musisz się zarejestrować aby móc odpowiadać lub zakładać nowe tematy, ale nie bój się to jest prosty proces w którym wymagamy minimalnych informacji.
|
Guest Message by DevFuse

[Hosties] DrugShop
Temat rozp. Adminek AMXX.PL, 22.01.2015 12:31
Brak odpowiedzi do tego tematu
Użytkownicy przeglądający ten temat: 0
0 użytkowników, 0 gości, 0 anonimowych