Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 382 online users. » 0 Member(s) | 379 Guest(s) Google, Bing, Yandex
|
Latest Threads |
The apparel powerhouse ai...
Forum: General Discussions
Last Post: trueknitsapparel
26 minutes ago
» Replies: 0
» Views: 1
|
Como usar Actor no pawno?
Forum: Portuguese/Portugu?s
Last Post: cristtianocastro
2025-09-30, 09:51 PM
» Replies: 0
» Views: 35
|
GetPlayerCameraTargetPlay...
Forum: Support
Last Post: Samp Nova
2025-09-28, 05:35 PM
» Replies: 0
» Views: 89
|
Project: Country Side (Bo...
Forum: Advertisements
Last Post: DevonH
2025-09-25, 04:41 AM
» Replies: 0
» Views: 164
|
press enter instead of /e...
Forum: Pawn Scripting
Last Post: phanchikiet060
2025-09-24, 12:31 AM
» Replies: 3
» Views: 323
|
removing server from the ...
Forum: Support
Last Post: edgy
2025-09-22, 04:32 PM
» Replies: 1
» Views: 221
|
United Gaming Life Rolepl...
Forum: Advertisements
Last Post: Cruncher
2025-09-17, 06:18 PM
» Replies: 0
» Views: 331
|
Adding new vehicles and s...
Forum: Support
Last Post: __.A.__
2025-09-15, 02:52 AM
» Replies: 2
» Views: 554
|
How to create a custom SA...
Forum: Support
Last Post: HELLHOUND
2025-09-15, 12:12 AM
» Replies: 1
» Views: 1,160
|
Silly little render a did...
Forum: Art
Last Post: HELLHOUND
2025-09-14, 09:00 PM
» Replies: 0
» Views: 359
|
|
|
The apparel powerhouse aimed at reinventing blanks and streetwear. |
Posted by: trueknitsapparel - 26 minutes ago - Forum: General Discussions
- No Replies
|
 |
Welcome To trueknits
The apparel powerhouse aimed at reinventing blanks and streetwear.
Our mission is to provide and support you in building your brand and provide you a canvas with our top quality fleece products. Whether you are a printer, an influencer, or a distributor, our aim is to provide you the platform to grow your apparel ventures.
When we first started, we realized that the blank industry was really basic and not very tailored towards refinement. The fabrics were average, and the finishing was on the coarser side. We decided to change this. From finishing our eco-fleece in combed cotton to redesigning our hoodies and sweatshirts and adding premium accessories, our fleece doesn't just look premium, it is premium.
TO A GREENER FUTURE
At True Knits, we are deeply committed to sustainability and environmental responsibility. Discover our eco-friendly practices that contribute positively to the planet.
|
|
|
Como usar Actor no pawno? |
Posted by: cristtianocastro - 2025-09-30, 09:51 PM - Forum: Portuguese/Portugu?s
- No Replies
|
 |
new SupCaminhoneiro;
SupCaminhoneiro = CreateActor(27, 2729.5891,-2451.3943,17.5937,272.8988);
K:\GTA SA\Server samp\gamemodes\rp.pwn(301) : error 017: undefined symbol "CreateActor"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Error.
Como resolver? Actor so pode usar no Qawno?
|
|
|
GetPlayerCameraTargetPlayer always return INVALID_PLAYER_ID |
Posted by: Samp Nova - 2025-09-28, 05:35 PM - Forum: Support
- No Replies
|
 |
Hello everyone,
I'm currently experiencing an issue with the GetPlayerCameraTargetPlayer function - it consistently returns INVALID_PLAYER_ID. Has anyone encountered this problem before? If you have a working solution or fix, I would greatly appreciate any information you could share.
Thank you.
|
|
|
Project: Country Side (Bone County Based RP) - PUBLIC BETA!! |
Posted by: DevonH - 2025-09-25, 04:41 AM - Forum: Advertisements
- No Replies
|
 |
Project: Country Side
Medium RP • SA-MP
Welcome to Project: Country Side, a brand new roleplay experience set in the rugged landscapes of Bone County.
Our goal? Bring immersive, fun, and realistic roleplay without drowning you in rules and a huge RP area.
Features:
• Advanced Inventory System
• Advanced Player Injuries
• Advanced Drug System
• Dynamic Company System
• Dynamic Faction System
• Player Strength System
• Realistic Shell Casing & Forensics
• Callsign System for Emergency Services
• And much more you will have to see for yourself!
We’re looking for:
• Dedicated Players
• Faction Leaders
• Staff Team Members
• Mappers
• Scripters
Server IP: projectcs.ddns.net:7777
Showcase:
![[Image: hUzfX8i.png]](https://i.imgur.com/hUzfX8i.png)
|
|
|
removing server from the internet tab |
Posted by: Tal_Bro - 2025-09-22, 08:06 AM - Forum: Support
- Replies (1)
|
 |
Hello,
There is a problem with adding my server to the internet-tab. I added it with the correct ip and port with "add server" button on the website. it showed the server but it disappeared after a short while. This is an open-mp server called "Freeroam-x".
Thank you for your help in advance.
|
|
|
press enter instead of /enter |
Posted by: Cruncher - 2025-09-20, 05:22 PM - Forum: Pawn Scripting
- Replies (3)
|
 |
I have made a code for pressing "y" to enter a house which works fine but the exit code doesnt work, When i am inside the house interior /exit cmd doesnt work either but if i enter the house with /enter then /exit works fine.
I am new to scripting so dont know if i am missing something or what, any input would be greatly appreciated...
Code: // House entry
if(newkeys & KEY_YES)
{
for(new i = 0; i < sizeof(HouseInfo); i++)
{
if(IsPlayerInRangeOfPoint(playerid, 3, HouseInfo[i][hExteriorX], HouseInfo[i][hExteriorY], HouseInfo[i][hExteriorZ]))
{
SetPlayerInterior( playerid, HouseInfo[i][hInteriorID]);
SetPlayerVirtualWorld( playerid, HouseInfo[i][hVirWorld]);
PlayerInfo[playerid][pVirtualWorld] = HouseInfo[i][hVirWorld];
SetPlayerPos( playerid, HouseInfo[i][hInteriorX], HouseInfo[i][hInteriorY], HouseInfo[i][hInteriorZ]);
}
}
return 1;
}
// House exit
if(newkeys & KEY_YES)
{
for(new i = 0; i < sizeof(HouseInfo); i++)
{
if(IsPlayerInRangeOfPoint(playerid, 3, HouseInfo[PlayerInfo[playerid][InHouse]][hInteriorX], HouseInfo[PlayerInfo[playerid][InHouse]][hInteriorY], HouseInfo[PlayerInfo[playerid][InHouse]][hInteriorZ]))
{
PlayerInfo[playerid][pVirtualWorld] = 0;
SetPlayerVirtualWorld(playerid, 0);
SetPlayerInterior(playerid, HouseInfo[i][hExteriorID]);
SetPlayerPos(playerid, HouseInfo[i][hExteriorX], HouseInfo[i][hExteriorY], HouseInfo[i][hExteriorZ]);
}
}
return 1;
}
|
|
|
United Gaming Life Roleplay |
Posted by: Cruncher - 2025-09-17, 06:18 PM - Forum: Advertisements
- No Replies
|
 |
Welcome to United Gaming Life Roleplay
IP Address: 212.132.253.248:7777
SAMP Version: 0.3.7-R2
Gamemode: Roleplay
Discord: https://discord.gg/2nd5rJe8
Forums: Not developed yet
Information:
This is a new Roleplay server that I am opening, Currently has 0 players as just starting up...
Staff positions are available for players who would like to assist in building up the server.
|
|
|
Adding new vehicles and skins in open.mp – help with DFF/TXD |
Posted by: __.A.__ - 2025-09-12, 07:47 PM - Forum: Support
- Replies (2)
|
 |
Content:
Hi, I’m returning to PAWN after a few years and I want to set up a server. I already have an online server account and I need help adding new vehicles and skins.
Questions:
1. Is it possible to add new vehicles (BMW, Audi, Tesla, etc.) that players can automatically download when joining the server?
2. Is it possible to add custom character skins, also with automatic downloading?
I’ve tried various methods from Google and YouTube (DFF/TXD, artwork-index.json), but nothing works.
Ideally, I would like a ready-to-use example: DFF/TXD files, working PAWN gamemode, and proper config.json setup, so everything downloads automatically when a client joins the open.mp server.
I’m using:
open.mp server and client on Windows
Online hosted server
PAWN gamemode
If anyone has a working example or step-by-step tutorial – I’d really appreciate the help.
---
|
|
|
Zona América del Sur FreeroamDM (Skinshoot) |
Posted by: kevinberriosflores - 2025-09-11, 02:17 PM - Forum: Advertisements
- Replies (1)
|
 |
Zona América del Sur FreeRoam /DM Skinshoot
IP 192.99.10.133:9477
Uno de los últimos servidores activos de SA-MP Freeroam.
Únete a su comunidad y disfruta del mejor servidor Freeroam y DeathMatch (DM) que jamás hayas experimentado; Adrenalina, intensidad y diversión al máximo.
- Explora el vasto mundo de San Andreas a tu propio ritmo.
- Participa en actividades variadas como carreras de autos, minijuegos, o simplemente relajarte y socializar con otros jugadores.
- Sumérgete en intensas batallas PvP y demuestra tus habilidades.
- Participa en eventos DeathMatch y otros organizados regularmente para ganar premios y reconocimiento.
- Elige entre una amplia variedad de armas y vehículos para dominar el campo de batalla.
- Compra una propiedad, autos y demuestra que eres el mejor del servidor
- Únete a una banda y participa en Clan Wars por Territorios
¡Agreganos a tus favoritos y diviértanse.
Usuarios Diarios ✅
IP 192.99.10.133:9477
Discord: https://discord.gg/jm3VpEzmtB
Facebook: https://facebook.com/groups/564922260336120/
|
|
|
|