Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 6,516
» Latest member: MEMOREX
» Forum threads: 2,235
» Forum posts: 12,037

Full Statistics

Online Users
There are currently 718 online users.
» 0 Member(s) | 716 Guest(s)
Bing, Google

Latest Threads
High-Precision Laser Weld...
Forum: General Discussions
Last Post: Young Harmoni
9 hours ago
» Replies: 0
» Views: 15
Interesting
Forum: Chat
Last Post: Gerty23461
Yesterday, 12:36 PM
» Replies: 1
» Views: 25
I humor myself
Forum: Programming
Last Post: nami16504
2024-11-25, 04:28 PM
» Replies: 5
» Views: 8,061
Command does not work in-...
Forum: Pawn Scripting
Last Post: PANZEHIR_
2024-11-23, 06:36 PM
» Replies: 0
» Views: 46
White Screen
Forum: Support
Last Post: Phat202146_real
2024-11-21, 02:50 PM
» Replies: 0
» Views: 44
I get error 021 using y_h...
Forum: Pawn Scripting
Last Post: daniscript18
2024-11-18, 11:34 PM
» Replies: 0
» Views: 62
Il reste des français sur...
Forum: French/Fran?ais
Last Post: tysanio
2024-11-18, 05:39 AM
» Replies: 2
» Views: 478
Object creation issues
Forum: Programming
Last Post: K1271
2024-11-15, 11:51 PM
» Replies: 0
» Views: 57
Is the SAMP Hosting the s...
Forum: General Discussions
Last Post: OperaGX
2024-11-14, 09:33 PM
» Replies: 0
» Views: 78
Run time error 19: "File ...
Forum: Pawn Scripting
Last Post: Rexey
2024-11-14, 03:50 AM
» Replies: 0
» Views: 65

 
  Existing Server Hosts
Posted by: Torque - 2020-10-21, 10:26 PM - Forum: Questions and Suggestions - Replies (1)

I was wondering whether or not the developers have spoken to some of the popular SAMP server hosts (Vortex, Zap Hosting, Ping Perfect) to see if they will begin to start hosting OpenMP servers once it's released?



I think for people who don't wish to use VPS will struggle to get their server hosted otherwise. Zap Hosting has a suggestion feature which is pretty good (I recently got them to consider hosting SAMP on Windows servers instead of only Linux), and I'm sure some discussions could be had to prepare for the launch of OpenMP and have it supported.


  Custom Skins/Objects
Posted by: Torque - 2020-10-20, 09:05 PM - Forum: Questions and Suggestions - Replies (3)

Is OpenMP having 0.3DL style features or not? Reason I ask is because my SAMP server currently uses 0.3DL, and once OpenMP is launched we're immediately switching. If OpenMP is not supporting this feature then I will go ahead and revert to 0.3.7, in preparation for OpenMP.



Regards.


  How to make an explosion with 0 damage
Posted by: orp.net - 2020-10-20, 12:45 PM - Forum: Pawn Scripting - Replies (3)

I want to create an explosion effect with 0 explosion damage.

The CreateExplosion() function has explosion damage.



How can I implement it?

I don't know how.



Waiting for help.


Lightbulb Looking to Hire a Pawn Scripter
Posted by: Youth - 2020-10-19, 07:19 PM - Forum: Pawn Scripting - No Replies

Hello! I'm looking to hire a Pawn scripter to build a roleplay gamemode for a future community. We are a team that is looking to pay nicely, prices can be negotiated of course. We will definitely ask for a portfolio

of scripts you have completed. My discord is?Youth#4678. Thank you!


  SKY Plugin
Posted by: Grate Maharlika - 2020-10-19, 06:27 PM - Forum: Support - Replies (1)

can anyone help me with SKY plugin installation, i get some confusion, do I really need to install CMake and Visual Studio? Or should I only drop all files from github into my server files?


  How to use SAMPCTL vscode/sublime.
Posted by: XoMoX - 2020-10-19, 10:01 AM - Forum: Tutorials - Replies (8)

INTRODUCTION TO SAMPCTL

Sampctl?is like a node npm just like in node.js but its in pawn there are many compatible libraries aka includes, there are many reasons to use sampctl.

1st is the compiler for vscode and sublime it can support both editors.?

2nd you can install libraries/includes in just a line.

3rd you can say goodbye to server.cfg, in sampctl you will use pawn.json instead of server.cfg



INSTALLING SAMPCTL



There are 2 ways to install this (Actually there are 3 or smth).

First way is using SCOOP, (INSTALL SCOOP HERE?or just run?
Code:
iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
) after that you can now you can execute this

Code:
scoop bucket add southclaws https://github.com/Southclaws/scoops.git; scoop install sampct


from another line. You can now run `sampctl` in PowerShell, CMD, git bash but you will need to restart any other open terminals if you install scoop for the first time so it is loaded in the the PATH environmet variable properly



The second way is installing it manually here are the steps.

1. Create a directory on your `c:\` drive root named `sampctl`

2. Download a Window release of sampctl and place the .exe file into the `sampctl` directory you created

3.?Add `c:\sampctl\` to your system PATH.

4. Open a new shell (PowerShell, CMD, or bash) and type `sampctl` - if you did the above correctly, you'll see sampctl help.





USING SAMPCTL



?1. How to install sampctl to your gamemode.?

Open up PowerShell or CMD in your server files directory (Where samp-server.exe and server.cfg located) use `sampctl p init` and you'll see this.

[Image: imLKAR2.png?1]


i never used .yaml im only using .json so select what you want here and you need to give information for your gamemode/library like if you want it to release to Github.



Now it will gonna ask you if you want to publish a gamemode/library like this.

[Image: nNHalYm.png?1]

Library means if you want to create a reusable includes this is where the fun begins, if you create a Library using sampctl we can download that using one command line which we will cover later.



Now you can select your Text editor you'll see an option like this.

[Image: b26GovK.png?1]

You can go select any Text editors you want (vscode or Sublime) for me I'm gonna select VScode for this.



Then lastly you're gonna select your main .pwn file

[Image: VA4bFrH.png?1]


IT MUST BE YOUR MAIN .PWN FILE but don't worry you will be able to change this in your pawn.json HAHA now you're done. If you're using vscode you can simply do ctrl shift b to compile your script I think the same goes to Sublime



2. How to install dependencies.

Well you can only install dependencies compatible or made with sampctl you've seen an option there earlier in the tutorial with the selection "gamemode / library" if you create a library you can just simply install it in your gamemode with just 1 line

`sampctl p install` so for instance `sampctl p install CnRXomoX/X_Enex` now some of you are asking "How did he get the link"(Assuming you're asking) well its pretty easy you can take a look at this picture


[Image: i06WID9.png?1]

Do you see the difference? you can enter it without the github.com because sampctl automatically adds it without hesitation downloading it 1 by 1 and this is the fun thing about sampctl it automatically downloads the .dll file or .so files automatically!

So no need to search "How to fix .dll error samp script".



You can see your downloaded libraries/includes in your dependency folder

If you just cloned your gamemode onto another PC/LAPTOP you can run `sampctl p ensure` to download the libraries/includes that is in your dependencies folder and .dll files in your plugins!



Sources.

sampctl GitHub repo:?https://github.com/Southclaws/sampctl

sampctl .exe file:?https://github.com/sampctl/installer/releases

You can go visit the GitHub repo for additional information




[img]https://i.imgur.com/nNHalYm.png?1[/img


  How hook streamer [plugin] calbacks?
Posted by: poiq - 2020-10-18, 03:37 PM - Forum: Pawn Scripting - Replies (1)

With YSI


  removed
Posted by: Grate Maharlika - 2020-10-18, 03:04 PM - Forum: Pawn Scripting - Replies (2)

removed


  Run time error 19
Posted by: AwaketheSnake - 2020-10-18, 03:51 AM - Forum: Pawn Scripting - Replies (1)

Hello, I keep coming across this run time error having looked everywhere and tried everything to remedy but have been unable to fix it. The gamemode compiles fine no errors. Is there any fix to this?



Quote:----------

Loaded log file: "server_log.txt".

----------



SA-MP Dedicated Server

----------------------

v0.3.DL-R1, ©2005-2018 SA-MP Team



[15:59:33]

[15:59:33] Server Plugins

[15:59:33] --------------

[15:59:33]? Loading plugin: sscanf

[15:59:33]



[15:59:33]? ===============================



[15:59:33]? ? ? sscanf plugin loaded.? ?



[15:59:33]? ? ? ? ? Version:? 2.8.3? ? ? ?



[15:59:33]? © 2018 Alex "Y_Less" Cole?



[15:59:33]? ===============================



[15:59:33]? Loaded.

[15:59:33]? Loading plugin: streamer

[15:59:33]



*** Streamer Plugin v2.9.4 by Incognito loaded ***



[15:59:33]? Loaded.

[15:59:33]? Loading plugin: mysql

[15:59:33]? >> plugin.mysql: R41-4 successfully loaded.

[15:59:33]? Loaded.

[15:59:33]? Loading plugin: irc

[15:59:33]



*** IRC Plugin v1.4.3 by Incognito loaded ***



[15:59:33]? Loaded.

[15:59:33]? Loaded 4 plugins.



[15:59:33] [artwork:crc] lvpdpc2.dff CRC = 0xFBD1EA7C

[15:59:33] [artwork:crc] lvpdpc2.txd CRC = 0xDC92731E

[15:59:33] [artwork:crc] lapdpd2.dff CRC = 0xA558D422

[15:59:33] [artwork:crc] lapdpd2.txd CRC = 0xA442E2DA

[15:59:33] [artwork:crc] wallzzz.dff CRC = 0x4BC6EDFF

[15:59:33] [artwork:crc] wallzzz.txd CRC = 0x235E3EEB

[15:59:33]

[15:59:33] Filterscripts

[15:59:33] ---------------

[15:59:33]? Loading filterscript 'attachments.amx'...

[15:59:33]? Loading filterscript 'test_cmds.amx'...

[15:59:33]? Loading filterscript 'skinchanger.amx'...

[15:59:33]

--Admin Player Skin Changer Loaded



[15:59:33]? Loading filterscript 'vspawner.amx'...

[15:59:33]

--Admin Vehicle Spawner Loaded



[15:59:33]? Loading filterscript 'npc_record.amx'...

[15:59:33]? Loading filterscript 'ospawner.amx'...

[15:59:33]

--Admin Vehicle Spawner Loaded



[15:59:33]? Loading filterscript 'zombies.amx'...

[15:59:33]? Loading filterscript 'flymode.amx'...

[15:59:33]? Loaded 8 filterscripts.



[15:59:33] Script[gamemodes/CZRP.amx]: Run time error 19: "File or function is not found"

[15:59:33] Number of vehicle models: 0

[16:43:47] --- Server Shutting Down.

[16:43:47]





Thanks!


  removed
Posted by: Grate Maharlika - 2020-10-17, 03:49 PM - Forum: Support - Replies (4)

removed