Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 7,231
» Latest member: ak657kk
» Forum threads: 2,373
» Forum posts: 12,329
Full Statistics
|
Online Users |
There are currently 123 online users. » 2 Member(s) | 119 Guest(s) Bing, Google, ak657kk, vico
|
Latest Threads |
Want to edit my profile n...
Forum: Chat
Last Post: ak657kk
Less than 1 minute ago
» Replies: 2
» Views: 541
|
Empire Freeroam Roleplay ...
Forum: Advertisements
Last Post: liamwonka
40 minutes ago
» Replies: 1
» Views: 491
|
Liberty City map
Forum: Pawn Scripting
Last Post: ziyadprogamer
2025-06-28, 04:55 PM
» Replies: 2
» Views: 2,126
|
GameText styles in open.m...
Forum: Pawn Scripting
Last Post: Miki
2025-06-28, 01:25 PM
» Replies: 1
» Views: 40
|
Very Basic SAMP UCP
Forum: Videos and Screenshots
Last Post: bullyalina
2025-06-28, 12:43 PM
» Replies: 49
» Views: 12,833
|
Script[gamemodes/gamemode...
Forum: Pawn Scripting
Last Post: Miki
2025-06-27, 05:08 PM
» Replies: 1
» Views: 424
|
Farsi
Forum: Other
Last Post: acc.gangbeni
2025-06-25, 08:21 AM
» Replies: 2
» Views: 3,060
|
Las Venturas Gang Wars - ...
Forum: Advertisements
Last Post: lvgwgta
2025-06-22, 06:47 PM
» Replies: 0
» Views: 50
|
[Request] Linko Gaming Ro...
Forum: General Discussions
Last Post: JamesC
2025-06-20, 07:34 PM
» Replies: 0
» Views: 62
|
RevolutionX DM/Stunt/Race...
Forum: Advertisements
Last Post: DerekZ905
2025-06-18, 03:12 PM
» Replies: 0
» Views: 86
|
|
|
Battlefields - TDM (Team Deathmatch) |
Posted by: [SF]kAn3 - 2021-10-18, 07:10 AM - Forum: Gamemodes
- Replies (2)
|
 |
Hello.
This is a TDM gamemode, so basically a PVP gamemode where players join a team and fight against other teams, and that's one of my projects I am NOT working on anymore.
So I am sharing the source code, do whatever you like with it!
Since I am not working on it anymore, I won't update the code, so please don't ask me anything about that!
Here I will add some short description:
There are several teams in war with each other. Teams have to conquer zones scattered all over the map, some of them are bonus zones that give different bonuses to the team that's controlling it.
Players have to choose classes, each class has its own abilities.
There's a bayonet system, some weapons have on them a knife, and you can stab foes with it for an insta-kill.
And there's more, you can find that trying the gamemode.
I don't have the plugins needed to run the gamemode, sorry about that!
Here I will post some videos:
https://www.youtube.com/watch?v=0c5HPd4-_Sg
https://www.youtube.com/watch?v=IMvi8aVbB6A
https://www.youtube.com/watch?v=2u8W1PWPCCQ
Download .pwn file
|
|
|
Discordia - PvP & PvE (Player Vs Player, Player Vs Environment) |
Posted by: [SF]kAn3 - 2021-10-18, 06:58 AM - Forum: Gamemodes
- No Replies
|
 |
Hello.
As the subject says, this is a gamemode I was working on during my free time.
I've decided to share it with anyone who's interested in working on it, I really liked how it was going to be, maybe some of you will give it a real life!
This gamemode is focused on PVP and PVE, taking place in a fictionary world, where players need to strive to survive, building their camp, fighting NPCs and other players, join/fight clans, build your player and levelup, scavenge the world for resources, food, water, weapons and so on.
I am NOT going to update this, things may change, but as for now I won't touch the code anymore ever, so don't ask me anything and feel free to do what you like with it!
Also, you will have to find all the needed plugins, I don't have them anymore!
Here I will post some videos:
https://www.youtube.com/watch?v=cV80d_jEk1M
https://www.youtube.com/watch?v=Sf_QxC3In9A
Download .pwn file
|
|
|
GTA SA remastered |
Posted by: NoxxeR - 2021-10-09, 08:12 AM - Forum: Chat
- Replies (6)
|
 |
Anybody seen the videos of GTA SA Remastered? Rockstar games is gonna release a new GTA SA version, with new engine and stuff.
https://www.youtube.com/watch?v=v9FWmcY6xsg
Do you guys know if it will be playable online? Will someone make a modification for it? Would been awesome, GTA SA Remastered will be fun ;)
|
|
|
Simple AFK system |
Posted by: Flofey - 2021-10-08, 06:56 PM - Forum: Filterscripts
- Replies (2)
|
 |
AFK Filterscript
Simple AFK filterscript system includes 2 commands, and yes right it would be nice if it was made only with one command
but it's made for beginner so they can understand the code.
What with this script?
This script is made of two commands
- /afk - gets you away from keyboard by freezing the player, so he cannot move or get damaged while he's away also there'll be 3D text label above the player's head labeling (AFK).
- /back - gets the player back with his movements and everything as normal.
Recommended files
credits to Zeex for the amazing ZCMD.
Waiting for your responds fellas.
|
|
|
Loop skipping (Creating only odd numbers) |
Posted by: Cherry. - 2021-10-06, 02:41 AM - Forum: Support
- Replies (3)
|
 |
Hey.
I have a command of creating houses.
The loop is creating houses just like 1,3,5,7,9,11..etc.
I tried to investigate the problem in the loop and I can't see anything wrong.
Somebody?knows? Here's the code..
Code: COMMAND:housecreate(playerid, params[])
{
new houseid, price, Float:X, Float:Y, Float:Z, UID, text[128];
if(sscanf(params,"ii",houseid, price)) return usage(playerid, "USAGE: /HouseCreate [Class] [Value]");
if(houseid < 1 || houseid > 4) return error(playerid, "Invalid house ID.");
new found = 0;
for(new i = 1; i < MAX_HOUSES; i)
{
if(HouseInfo[i][hID] == 0 && found == 0)
{
? ? found;
? ? UID = i;
format(text, sizeof(text), "House id is %d", UID);
SendClientMessage(playerid, -1, text);
}
}
new count = 0;
for(new i = 0; i < sizeof(HouseCoordinates); i)
{
? ? if(count == 0)
? ? {
? ? ? ? if(HouseCoordinates[i][Class] == houseid)
? ? ? ? {
? ? ? ? count;
HouseInfo[UID][hXi] = HouseCoordinates[i][mbX];
HouseInfo[UID][hYi] = HouseCoordinates[i][mbY];
HouseInfo[UID][hZi] = HouseCoordinates[i][mbZ];
HouseInfo[UID][hIntIn] = HouseCoordinates[i][HouseInt];
}
}
}
HouseInfo[UID][hID] = UID;
HouseInfo[UID][hValue] = price;
HouseInfo[UID][hClass] = houseid;
HouseInfo[UID][hIntOut] = GetPlayerInterior(playerid);
HouseInfo[UID][hVwOut] = GetPlayerVirtualWorld(playerid);
HouseInfo[UID][hVwIn] = MAX_INTS UID;
GetPlayerPos(playerid, X, Y, Z);
HouseInfo[UID][hXo] = X;
HouseInfo[UID][hYo] = Y;
HouseInfo[UID][hZo] = Z;
new query[516], owner[25];
format(owner, sizeof(owner), "None");
mysql_format(handlesql, query, sizeof(query),"INSERT INTO `houses`(`ID`, `Xo`, `Yo`, `Zo`, `Xi`, `Yi`, `Zi`, `IntOut`, `IntIn`, `VwOut`, `Owner`, `Value`) VALUES (%d, %f, %f, %f, %f, %f, %f, %d, %d, %d, '%e', %d)",
UID, X, Y, Z, HouseInfo[UID][hXi], HouseInfo[UID][hYi], HouseInfo[UID][hZi], HouseInfo[UID][hIntOut], HouseInfo[UID][hIntIn], HouseInfo[UID][hVwOut],
owner, price);
mysql_pquery(handlesql, query);
HouseInfo[UID][hIcon] = CreateDynamicCP(HouseInfo[UID][hXo], HouseInfo[UID][hYo], HouseInfo[UID][hZo], 1.5, HouseInfo[UID][hVwOut], -1, -1, 20.0);
HouseInfo[UID][hIconi] = CreateDynamicCP(HouseInfo[UID][hXi], HouseInfo[UID][hYi], HouseInfo[UID][hZi], 1.5, HouseInfo[UID][hVwIn], -1, -1, 20.0);
UpdateHouseText(UID);
Iter_Add(HouseIterator, UID);
return 1;
}
|
|
|
Write plugins |
Posted by: Paulthas01 - 2021-10-02, 01:28 PM - Forum: Support
- No Replies
|
 |
Existe um post local falando sobre como escrever plug-ins para o samp?
|
|
|
Project |
Posted by: offr0ad - 2021-10-02, 12:32 PM - Forum: General Discussions
- Replies (2)
|
 |
How far is open.mp from launch?
Currently it seems like there isn't any userbase at all and even the biggest names in samp scene have closed their servers.
|
|
|
|