Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 357 online users. » 0 Member(s) | 355 Guest(s) Bing, Google
|
Latest Threads |
Command does not work in-...
Forum: Pawn Scripting
Last Post: PANZEHIR_
2024-11-23, 06:36 PM
» Replies: 0
» Views: 36
|
White Screen
Forum: Support
Last Post: Phat202146_real
2024-11-21, 02:50 PM
» Replies: 0
» Views: 32
|
I get error 021 using y_h...
Forum: Pawn Scripting
Last Post: daniscript18
2024-11-18, 11:34 PM
» Replies: 0
» Views: 51
|
Il reste des français sur...
Forum: French/Fran?ais
Last Post: tysanio
2024-11-18, 05:39 AM
» Replies: 2
» Views: 455
|
Object creation issues
Forum: Programming
Last Post: K1271
2024-11-15, 11:51 PM
» Replies: 0
» Views: 52
|
Is the SAMP Hosting the s...
Forum: General Discussions
Last Post: OperaGX
2024-11-14, 09:33 PM
» Replies: 0
» Views: 69
|
Run time error 19: "File ...
Forum: Pawn Scripting
Last Post: Rexey
2024-11-14, 03:50 AM
» Replies: 0
» Views: 60
|
How to Compile Your Gamem...
Forum: Tutorials
Last Post: thelante
2024-11-13, 08:50 AM
» Replies: 3
» Views: 456
|
Modeller wanted
Forum: Development Updates
Last Post: acc.gangbeni
2024-11-11, 05:10 PM
» Replies: 9
» Views: 16,469
|
SA:MP forum offline
Forum: Portuguese/Portugu?s
Last Post: weslley_script
2024-11-09, 05:27 PM
» Replies: 7
» Views: 9,908
|
|
|
MySQL Prepared Statements |
Posted by: PatrickGTR - 2019-06-07, 07:42 PM - Forum: Libraries
- Replies (7)
|
|
Introduction
Hi, I'll keep it short and simple.?
This emulates prepared statement when using the MySQL plugin.
Thank you for reading this really long introduction.
Download: Click me
Important: sampctl required! check github repository for installation instructions.
Reading Data (using inline)
Code: new stmt_readloop = MySQL_PrepareStatement(MySQLHandle, "SELECT * FROM spawns");
// Run Threaded on statement
inline OnSpawnsLoad() {
? ? new
? ? spawnID,
? ? Float:spawnX,
? ? Float:spawnY,
? ? Float:spawnZ,
? ? Float:spawnA;
? ? MySQL_BindResultInt(stmt_readloop, 0, spawnID);
? ? MySQL_BindResultFloat(stmt_readloop, 1, spawnX);
? ? MySQL_BindResultFloat(stmt_readloop, 2, spawnY);
? ? MySQL_BindResultFloat(stmt_readloop, 3, spawnZ);
? ? MySQL_BindResultFloat(stmt_readloop, 4, spawnA);
? ? while(MySQL_Statement_FetchRow(stmt_readloop)) {
? ? ? ? printf("%i, %.3f, %.3f, %.3f", spawnID, spawnX, spawnY, spawnZ, spawnA);
? ? }
? ? MySQL_StatementClose(stmt_readloop);
}
MySQL_ExecuteThreaded_Inline(stmt_readloop, using inline OnSpawnsLoad);
Writing Data
Code: new Statement: stmt_insert = MySQL_PrepareStatement(MySQLHandle, "INSERT INTO accounts(username, password, salt, money, kills, deaths) VALUES (?,?,?,?,?,?) " );
// Arrow values in questions (first 0, second is 1, etc ...)
MySQL_Bind(stmt_insert, 0 , "patrickgtr");
MySQL_Bind(stmt_insert, 1 , "patrickgtrpassword");
MySQL_Bind(stmt_insert, 2 , "pgtrhash");
MySQL_BindInt(stmt_insert, 3, 100);
MySQL_BindInt(stmt_insert, 4, 200);
MySQL_BindInt(stmt_insert, 5, 300);
MySQL_ExecuteParallel(stmt_insert);
MySQL_StatementClose(stmt_insert);
Functions
Open/Close
Code: MySQL_StatementClose(Statement:statement)
MySQL_PrepareStatement(MySQL:handle, const query[])
MySQL_Statement_RowsLeft(&Statement:statement)
MySQL_Statement_FetchRow(Statement:statement)
Writing
Code: MySQL_Bind(Statement:statement, param, const str[])?
MySQL_BindInt(Statement:statement, param, value)
MySQL_BindFloat(Statement:statement, param, Float:value)
Reading
Code: MySQL_BindResult(Statement:statement, field, const result[], len = sizeof(result))
MySQL_BindResultInt(Statement:statement, field, &result)
MySQL_BindResultFloat(Statement:statement, field, &Float:result)
Executing
Code: MySQL_ExecuteThreaded(Statement:statement, const callback[] = "", const fmat[] = "", {Float,_}:...)
MySQL_ExecuteParallel(Statement:statement, const callback[] = "", const fmat[] = "", {Float,_}:...)
MySQL_ExecuteThreaded_Inline(Statement:statement, Func:callback<>)
MySQL_ExecuteParallel_Inline(Statement:statement, Func:callback<>)
|
|
|
How can regular PAWN scripter contribute? |
Posted by: Logan - 2019-06-07, 04:39 PM - Forum: Questions and Suggestions
- Replies (4)
|
|
Hello to everyone on this forum.
I've stumbled across this marvelous page project, and first of all, I would like to thank Y_Less, Southclaws and many other people that I don't know, that came trough with this project. I am huge fan of their work for more then a decade, since I touched PAWN first time.
I will share you little bit of my details so you can tell me who to contact/how to contribute. I've been scripting actively in PAWN since 2008/2009(currently I am 24 years old), stopped 2013(college), continued 2018 untill present. When I returned last year, I fixed at least 10 000 bugs?on my gamemode(from the smallest to biggest, regarding MySQL, timers, server crashes, and hardcore cheaters who managed to turn off outgoing packages). We even managed to defend ourselves from DDoSers and flooders, but, none of that would be possible without forums and knowledge that many of you shared on SAMP forums. So I'll use this chance to thank all of you that contributed with your knowledge which helped me become even better at scripting. We've been using YSI for almost a decade, literally marvelous library, and I would dare to say subculture of PAWN langauge that countinues to be awesome.
So with everything said, since this is my first day here and that I heard about this whole project, how can I contribute? 10 mins ago, I told Y_Less, and I'm gonna say it again, I plan to contribute as much of my free time as possbile on this project, so show me the way.
Also, another "side question". Does open.mp plan to have custom objects/vehicles/animations/skins?
Thank you for spending time reading my post, hope I didn't bother you. Cheers! :D
|
|
|
y_hooks multiple includes |
Posted by: iReal Worlds - 2019-06-07, 03:54 PM - Forum: Pawn Scripting
- Replies (3)
|
|
I have a problem using y_hooks:
I have the main gamemode (main.pwn), and two "modules" that are included in it: "module1.inc" and "module2.inc".
In both of them, I have to use y_hooks. From what I knew, you had to reinclude y_hooks if you wanted to hook to the same function, so at top of each module, I have
Code: #include "..\include\YSI\y_hooks.inc"
But I get a "symbol already defined" error in "module2" for the callbacks that have already been hooked to in the first one.
|
|
|
physics.inc |
Posted by: Peppe - 2019-06-07, 02:01 PM - Forum: Libraries
- Replies (9)
|
|
PHYSICS.INC
Introduction
Hello gamers, I have to be honest, I'm not touching anything SA-MP related from more than 2 years, but today I've got a bit nostalgic and just?discovered the?Open-MP project.
This physics.inc (or Objects Physics) library is a project I worked to in 2013, and it would be nice for someone to revive that, if Open-MP developers can help mitigate?the network?problems (too many acks)?that a constantly updating physics simulation gives. As you can notice, it's been a lot of years since I worked on this project, so forgive me if I'll not be detailed enough or write something incorrect. Also,
Physics.inc is a very basic implementation of projectile physics in SA-MP, allowing to handle the 2D or 3D movement of objects (ideally, balls), collisions, or even interacting with the San Andreas world, thanks to the?ColAndreas plugin.
Github
https://github.com/uPeppe/physics.inc
Library dependencies
modelsizes.inc
foreach.inc?
ColAndreas (not mandatory)
zcmd (only for pool, but it's easy to switch to another command processor)
Documentation
Code: PHY_InitObject(objectid, modelid = 0, Float:mass = 1.0, Float:size = FLOAT_NAN, mode = PHY_MODE_3D)
/*Starts using physics for objectid.
modelid - object's modelid, used to get its size with modelsizes include.
mass - object's mass, it is like its weight and is used in collisions.
size - object's sphere radius, taken from modelsizes.inc by default.
mode - PHY_MODE_3D or PHY_MODE_2D.*/
PHY_GetObjectMode(objectid)
PHY_DeleteObject(objectid)
/*Stops using physics for objectid (doesn't destroy it).*/
PHY_SetObjectVelocity(objectid, Float:vx, Float:vy, Float:vz = 0.0)
/*Moves the object with vx, vy, vz velocities.*/
PHY_GetObjectVelocity(objectid, &Float:vx, &Float:vy, &Float:vz)
PHY_IsObjectMoving(objectid)
PHY_SetObjectAcceleration(objectid, Float:ax, Float:ay, Float:az = 0.0)
/*Sets the object's acceleration.*/
PHY_GetObjectAcceleration(objectid, &Float:ax, &Float:ay, &Float:az)
PHY_GetObjectSpeed(objectid, &Float:speed, _3D = 0)
PHY_GetObjectMoveAngle(objectid, &Float:moveangle)
stock PHY_RollObject(objectid, toggle = 1, rollingmode = PHY_ROLLING_MODE_DEFAULT)
/* Starts rolling the object when it moves of toggle = 1 or stops if toggle = 0.
rollingmode = PHY_ROLLING_MODE_DEFAULT (Euler angles) or PHY_ROLLING_MODE_ADVANCED (Quaternions)
When using advanced rolling mode, if you manually use SetObjectRot in your script, it is adviced to
call PHY_RollObject again, in order to recalculate its quaternion angles.*/
PHY_IsObjectRolling(objectid)
PHY_SetObjectFriction(objectid, Float:friction)
/*Applies friction to the object when it moves on the floor (at its lowest Z). If friction is applied, the object gradually slows down.*/
Float:PHY_GetObjectFriction(objectid)
PHY_SetObjectAirResistance(objectid, Float:resistance)
/*Applies air resistance to the object when it moves. The difference between friction and air resistance is that the former works only if the object is on the floor and the letter is also slows down the object proportionally to its velocity.*/
Float:PHY_GetObjectAirResistance(objectid)
PHY_SetObjectZBound(objectid, Float:low = FLOAT_NAN, Float:high = FLOAT_NAN, Float:constant = 0.0)
/*Limits the object's Z position.
low - The lowest Z that the object can have (you can use FLOAT_NEG_INFINITY). If it is set to NaN it doesn't change.
high - The highest Z that the object can have (you can use FLOAT_INFINITY). If it is set to NaN it doesn't change.
(When you use PHY_InitObject lowest Z is set to the current object's Z and highest Z to FLOAT_INFINITY.
constant - It should be from 0.0 to 1.0. If it is 1.0 the object doesn't lose velocity,
if it is 0.0 the object stops when it bounces. It could be a middle ground.*/
PHY_SetObjectGravity(objectid, Float:gravity)
/*Sets the gravity's acceleration that the object is subjected to.*/
Float:PHY_GetObjectGravity(objectid)
PHY_SetObjectWorld(objectid, world)
/*Object and walls collide only if the are in the same world or one of them is in the world 0 (default).*/
PHY_ToggleObjectPlayerColls(objectid, toggle = 1, Float:constant = 1.0, Float:distoffset = 0.8, Float:zoffsetlow = 1.0, Float:zoffsethigh = 1.0)
/*Toggles object's collisions with players.
- constant - It should be from 0.0 to 1.0. If it is 1.0 the object doesn't lose velocity,
if it is 0.0 the object stops when it bounces. It could be a middle ground.
- distoffset - The distance at which the object collides with the player.
- zoffsetlow/zoffsethigh - The max Z distance (downward/upward) at which the object collides with the player.*/
PHY_ApplyRotation(objectid, Float:speed, Float:moveangle)
/*Function used internally to rotate the objects.*/
PHY_CreateWall(Float:x1, Float:y1, Float:x2, Float:y2, Float:constant = 1.0, Float:low = FLOAT_NEG_INFINITY, Float:high = FLOAT_INFINITY)
/*Creates a collision wall (straight line) from A(x1, y1) to B(x2, y2).
constant should be from 0.0 to 1.0. If it is 1.0 the object doesn't lose velocity,
if it is 0.0 the object stops when it collides.
low is the lowest wall's Z, high is the highest. If they're set to default the wall is like infinitely high. */
PHY_CreateArea(Float:minX, Float:minY, Float:maxX, Float:maxY, Float:constant = 1.0, Float:low = FLOAT_NEG_INFINITY, Float:high = FLOAT_INFINITY)
/*Creates four walls that form an area. Works like IsPlayerInArea.*/
PHY_DestroyWall(wallid)
PHY_SetWallWorld(wallid, world)
PHY_CreateCylinder(Float:x, Float:y, Float:size, Float:constant = 1.0, Float:low = FLOAT_NEG_INFINITY, Float:high = FLOAT_INFINITY)
/*Creates a collision cylinder at position x, y.
constant should be from 0.0 to 1.0. If it is 1.0 the object doesn't lose velocity,
if it is 0.0 the object stops when it collides.
low is the lowest cylinder's Z, high is the highest. If they're set to default the cylinder is like infinitely high.*/
PHY_DestroyCylinder(cylinderid)
PHY_SetCylinderWorld(cylinderid, world)
PHY_SetPlayerWorld(playerid, world)
PHY_UseColAndreas(objectid, mode = 1)
/* Sets ColAndreas mode for the object. Modes: 0 none, 1 collisions z bounds, 2 collisions only, 3 z bounds only */
/* Callbacks */
forward PHY_OnObjectUpdate(objectid);
forward PHY_OnObjectCollideWithObject(object1, object2);
forward PHY_OnObjectCollideWithZBound(objectid, lowhigh); // low bound = 0, high bound = 1
forward PHY_OnObjectCollideWithSAWorld(objectid, Float:cx, Float:cy, Float:cz); // Only with ColAndreas
forward PHY_OnObjectCollideWithWall(objectid, wallid);
forward PHY_OnObjectCollideWithCylinder(objectid, cylinderid);
forward PHY_OnObjectCollideWithPlayer(objectid, playerid);
ColAndreas support
ColAndreas plugin by Pottus and Crayder allows to calculate collisions with every object in San Andreas map and to constantly update the low and high Z bound of the object that uses physics.?
If you want to use ColAndreas features (PHY_UseColAndreas and PHY_OnObjectCollideWithSAWorld), put "#define COLANDREAS" before including "physics.inc".
Warning: the interaction between this library and ColAndreas might be inefficient and very code-time consuming!?
Examples
In gamemodes folder of the Github repository, you can find some examples of what you can do with this library.
- Pool. It's the perfect example of 2D Physics, with balls that can collide between themselves or?with walls.?Press LMB to hold the ball.Press RMB to shot/pass the ball. Press ALT to lob the ball. Press F to make a cross/high shot.?Hit the ball (press RMB/ALT/F) when it is at head height to make a header. Power bar when you are holding RMB/ALT/F.
[Video: https://www.youtube.com/watch?v=yOtlNQvgJ6Q]
- Soccer. Here physics are 3D (z-axis is used). This script also uses the "collision cylinder" feature, for the goal post.
[Video: https://www.youtube.com/watch?v=ISTebVTMYog]
- Throw an object. A more simple example of of 3D physics, with a command to just throw a Deagle in the air.
Code: command(launch, playerid, params[])
{
#define SPEED (10.0)
#define Z_SPEED (4.0)
#define GRAVITY (13.0)
? ? ? ? new modelid = 348; // Deagle Model ID
new Float:x, Float:y, Float:z, Float:ang;
GetPlayerPos(playerid, x, y, z);
GetPlayerFacingAngle(playerid, ang);
new obj = CreateObject(modelid, x, y - 0.5 * floatcos(-(ang 90.0), degrees), z, 93.7, 120.0, ang 60.0);
? PHY_InitObject(obj);
PHY_SetObjectVelocity(obj, SPEED * floatsin(-ang, degrees), SPEED * floatcos(-ang, degrees), Z_SPEED);
PHY_SetObjectFriction(obj, 100); // This will stop the object when it touchs the ground.
PHY_SetObjectGravity(obj, GRAVITY);
PHY_SetObjectZBound(obj, z - 1.0, _, 0.0);
ApplyAnimation(playerid,"GRENADE","WEAPON_throwu",3.0,0,0,0,0,0);
return 1;
}
- ColAndreas testing.
[Video: https://www.youtube.com/watch?v=QKHDK_vogYE]
Appreciated contributions?
I don't even have GTA San Andreas on my computer, so it would be hard for me to update this library. I have a list of things that are very easy to do:
- Update physics.inc with the latest library dependencies versions (but still keeping compatibility with the older ones).
The code is very old, so I used old version of the libraries modelsizes, foreach and ColAndreas. For example, I think no one uses foreach now, but use instead?Y_Iterate. Also, I don't know if the current ColAndreas version works well with the include, because at the time I used one of the first versions.
- Implement a more advanced object rolling.?DONE
With the way the actual code works, the rolling of a ball is not so realistic, because, when an object changes its direction of movement,?the RZ angle is instantly changed to match that direction.A more realistic way to roll objects should use operations on quaternions, instead of Euler angles. In the past, I try to use that, but it didn't work. In 2016, a chinese guy on SA-MP forum managed to fix that and here's the code: https://mega.nz/#!38QlGaLb!uinmaqDDaTjha...WkP3ubLLYI (version of physics.inc that rolls objects using quaternions). It would be nice if you implement part of his code, in order to have two options of rolling objects, with a function like PHY_SetObjectRollingMode: ROLLING_MODE_DEFAULT for the more simple one I wrote and ROLLING_MODE_ADVANCED?for the quaternions one. In order to do that, you modify the?PHY_ApplyRotation function.This is how the ROLLING_MODE_DEFAULT should look: https://www.youtube.com/watch?v=Kbkm4fXaB7Q. This is how the ROLLING_MODE_ADVANCED should look: https://www.youtube.com/watch?v=xl5Vbd2tfwM. As you can see, the problem of the first one is the sudden change of rotation when two balls collide and thus change their direction of movement.
Submit a pull request on Github if you want to contribute and please write in this topic. I'll appreciate a lot if someone helps cleaning this least.
|
|
|
????????) |
Posted by: ApostolDMITRY - 2019-06-06, 06:05 PM - Forum: Russian/???????
- Replies (3)
|
|
??? ????????? ??????, ?? ???? ?????, ???????? ? ?????? ? ?????? ? ??. ??????????? ?????? ? ???????Pawn Scripting, ?? ???????? ????????????, ???????, ?????????? ??????? ??? ????, ?? ??? ?? ? ?????? ???????? ??? ????? ?????? ???????? ?????????, ?????? ??? ?? ????? ??????? ??? ?????????? ? ??.?
|
|
|
Ban system by Hardware ID/Serial |
Posted by: Maik - 2019-06-06, 03:47 PM - Forum: Questions and Suggestions
- Replies (31)
|
|
Ban system by Serial same as MTA (or similiar)
When i had a SAMP server Dayz, i was tired of many times had problems with cheaters and toxic players that comeback to the server everytime.
You ban a player or a toxic player, and a few minutes later, the same player comeback with a different nickname just to annoying and disturb. When i had my server on MTA (2012/2013) i never had that problem. Once the player was banned, he couldn't come back again, even reseting the IP or formatting the PC.
He has really banned from the server.
I hope that you have a system like that, its something that is missing on the other plataform, but could really help people with a server. (Including Dayz, where the number of cheaters is a lot)
|
|
|
[MAP] Condominium |
Posted by: ronfino - 2019-06-06, 04:59 AM - Forum: Filterscripts
- Replies (7)
|
|
first time i release a map, tell me what you think
Coords: 2210.61, 1866.45, -68.63
Code: //Map Exported with Texture Studio By: [uL]Pottus////////////////////////////////////////////////////////////////
//////////////////////////////////////////////and Crayder////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//Map Information////////////////////////////////////////////////////////////////////////////////////////////////
/*
Exported on "2019-06-06 06:33:19" by "ronfino"
Created by "ronfino"
*/
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//Objects////////////////////////////////////////////////////////////////////////////////////////////////////////
new tmpobjid;
tmpobjid = CreateDynamicObject(19377, 2214.208740, 1862.148071, -69.721466, 0.000000, -90.000000, 0.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 3980, "cityhall_lan", "man_cellarfloor128", 0x00000000);
tmpobjid = CreateDynamicObject(19455, 2208.884033, 1862.148071, -67.895538, 0.000000, 0.000000, 0.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicbrikwall01", 0x00000000);
tmpobjid = CreateDynamicObject(19455, 2212.416259, 1865.659790, -67.895538, 0.000000, 0.000007, 0.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicbrikwall01", 0x00000000);
tmpobjid = CreateDynamicObject(19455, 2213.775390, 1857.247802, -67.895538, 0.000000, 0.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicbrikwall01", 0x00000000);
tmpobjid = CreateDynamicObject(19455, 2217.144531, 1860.758911, -67.895538, -0.000007, 0.000000, -89.999977, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicbrikwall01", 0x00000000);
tmpobjid = CreateDynamicObject(19455, 2217.144531, 1859.027832, -67.895538, 0.000000, 0.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicbrikwall01", 0x00000000);
tmpobjid = CreateDynamicObject(19455, 2213.794921, 1863.898071, -67.895538, 0.000000, 0.000000, 0.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicbrikwall01", 0x00000000);
tmpobjid = CreateDynamicObject(19377, 2211.875244, 1854.147094, -62.558506, 0.000000, -89.999992, 0.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 3980, "cityhall_lan", "man_cellarfloor128", 0x00000000);
tmpobjid = CreateDynamicObject(1522, 2209.895263, 1866.904541, -69.635528, 0.000000, 0.000000, 0.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 3820, "boxhses_sfsx", "ws_wood_doors2", 0x00000000);
tmpobjid = CreateDynamicObject(14409, 2215.305419, 1856.916870, -69.325469, 0.000007, -0.000000, 89.999977, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 1, 5133, "coast_las2", "greyground256sand", 0x00000000);
tmpobjid = CreateDynamicObject(19455, 2213.775390, 1866.939697, -67.895538, 0.000000, 0.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicbrikwall01", 0x00000000);
tmpobjid = CreateDynamicObject(19377, 2222.375976, 1854.147094, -66.228424, 0.000000, -89.999992, 0.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 3980, "cityhall_lan", "man_cellarfloor128", 0x00000000);
tmpobjid = CreateDynamicObject(19455, 2215.296142, 1857.247802, -64.395599, 0.000000, 0.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicbrikwall01", 0x00000000);
tmpobjid = CreateDynamicObject(19455, 2218.115478, 1859.027832, -64.395599, 0.000000, 0.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicbrikwall01", 0x00000000);
tmpobjid = CreateDynamicObject(19377, 2208.453857, 1862.148071, -66.057525, 0.000000, -90.000000, 0.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 7555, "bballcpark1", "backstageceiling1_128", 0x00000000);
tmpobjid = CreateDynamicObject(19455, 2220.024414, 1852.341430, -64.389511, -0.000000, -0.000007, -179.999954, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicbrikwall01", 0x00000000);
tmpobjid = CreateDynamicObject(19455, 2223.006591, 1854.133178, -64.389511, -0.000000, -0.000007, -179.999954, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicbrikwall01", 0x00000000);
tmpobjid = CreateDynamicObject(19377, 2222.375976, 1844.514038, -66.228424, 0.000000, -89.999992, 0.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 3980, "cityhall_lan", "man_cellarfloor128", 0x00000000);
tmpobjid = CreateDynamicObject(19455, 2220.024414, 1842.707641, -64.389511, -0.000000, -0.000015, -179.999908, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicbrikwall01", 0x00000000);
tmpobjid = CreateDynamicObject(19455, 2223.006591, 1844.498413, -64.389511, -0.000000, -0.000015, -179.999908, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicbrikwall01", 0x00000000);
tmpobjid = CreateDynamicObject(19455, 2223.006591, 1839.678955, -64.389511, -0.000007, -0.000007, -89.999916, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicbrikwall01", 0x00000000);
tmpobjid = CreateDynamicObject(19455, 2213.616210, 1857.247802, -64.395599, 0.000000, 0.000000, -180.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicbrikwall01", 0x00000000);
tmpobjid = CreateDynamicObject(19858, 2222.927978, 1855.107910, -64.902595, 0.000000, 0.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 6056, "venice_law", "newlawdoor", 0x00000000);
tmpobjid = CreateDynamicObject(19377, 2222.375976, 1854.147094, -62.558506, 0.000000, -89.999992, 0.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 7555, "bballcpark1", "backstageceiling1_128", 0x00000000);
tmpobjid = CreateDynamicObject(19377, 2222.375976, 1844.514038, -62.558506, 0.000000, -89.999992, 0.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 7555, "bballcpark1", "backstageceiling1_128", 0x00000000);
tmpobjid = CreateDynamicObject(19858, 2220.106445, 1855.107910, -64.902595, 0.000000, 0.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 6056, "venice_law", "newlawdoor", 0x00000000);
tmpobjid = CreateDynamicObject(19858, 2222.927978, 1852.107910, -64.902595, 0.000000, 0.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 6056, "venice_law", "newlawdoor", 0x00000000);
tmpobjid = CreateDynamicObject(19858, 2220.106445, 1852.107910, -64.902595, 0.000000, 0.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 6056, "venice_law", "newlawdoor", 0x00000000);
tmpobjid = CreateDynamicObject(19858, 2222.927978, 1849.107910, -64.902595, 0.000000, 0.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 6056, "venice_law", "newlawdoor", 0x00000000);
tmpobjid = CreateDynamicObject(19858, 2220.106445, 1849.107910, -64.902595, 0.000000, 0.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 6056, "venice_law", "newlawdoor", 0x00000000);
tmpobjid = CreateDynamicObject(19858, 2222.927978, 1846.107910, -64.902595, 0.000000, 0.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 6056, "venice_law", "newlawdoor", 0x00000000);
tmpobjid = CreateDynamicObject(19858, 2220.106445, 1846.107910, -64.902595, 0.000000, 0.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 6056, "venice_law", "newlawdoor", 0x00000000);
tmpobjid = CreateDynamicObject(19858, 2222.927978, 1843.107910, -64.902595, 0.000000, 0.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 6056, "venice_law", "newlawdoor", 0x00000000);
tmpobjid = CreateDynamicObject(19858, 2220.106445, 1843.107910, -64.902595, 0.000000, 0.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 6056, "venice_law", "newlawdoor", 0x00000000);
tmpobjid = CreateDynamicObject(19860, 2213.728515, 1860.643066, -68.395614, 0.000000, 0.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 16093, "a51_ext", "des_backdoor1", 0x00000000);
tmpobjid = CreateDynamicObject(19858, 2222.258056, 1839.757568, -64.902595, 0.000000, 0.000000, -180.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 6056, "venice_law", "newlawdoor", 0x00000000);
tmpobjid = CreateDynamicObject(19858, 2222.927978, 1858.107910, -64.902595, 0.000000, 0.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 6056, "venice_law", "newlawdoor", 0x00000000);
tmpobjid = CreateDynamicObject(19921, 2211.830566, 1861.536254, -69.535499, 0.000000, 0.000000, -79.699943, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 1259, "billbrd", "bluemetal02", 0x00000000);
tmpobjid = CreateDynamicObject(2076, 2210.746826, 1863.152099, -66.245376, 0.000000, 0.000000, 0.000000, -1, -1, -1, 800.00, 800.00);?
SetDynamicObjectMaterial(tmpobjid, 0, 11100, "bendytunnel_sfse", "blackmetal", 0x00000000);
SetDynamicObjectMaterial(tmpobjid, 1, 1408, "break_fence1", "compfence2_LAe", 0x00000000);
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
tmpobjid = CreateDynamicObject(2007, 2209.014648, 1858.661621, -68.895484, 0.000000, 0.000000, 90.000000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(2007, 2209.014648, 1859.642456, -68.895484, 0.000000, 0.000000, 90.000000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(1778, 2212.187744, 1861.077026, -69.635528, 0.000000, 0.000000, -34.700000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(2852, 2222.437011, 1858.462524, -66.142486, 0.000000, 0.000000, -22.000003, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(19826, 2212.331542, 1862.847290, -68.275505, 0.000000, 0.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(1620, 2212.316162, 1864.909545, -66.875595, 0.000000, 0.000000, 0.000000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(1620, 2221.460693, 1852.968750, -62.652557, 0.000000, -90.000000, 90.000000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(1620, 2221.460693, 1848.968750, -62.652557, 0.000000, -90.000000, 90.000000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(1620, 2221.460693, 1844.968750, -62.652557, 0.000000, -90.000000, 90.000000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(2961, 2221.174316, 1858.941528, -64.702491, 0.000000, 0.000000, 0.000000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(3027, 2220.629394, 1850.110107, -66.132484, 0.000000, -90.000000, 29.100000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(2372, 2212.533935, 1856.379760, -68.017120, 30.000000, -90.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(2372, 2214.371826, 1856.379760, -66.957069, 30.000000, -90.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(1624, 2208.507568, 1863.210815, -67.945480, 0.000000, 0.000000, -180.000000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(927, 2208.960693, 1864.419189, -67.385719, 0.000000, 0.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(1630, 2208.973632, 1865.527832, -68.975624, 0.000000, 0.000000, -180.000000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(938, 2221.461669, 1855.633300, -62.792575, 0.000000, 0.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(938, 2221.461669, 1850.853515, -62.792575, 0.000000, 0.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(938, 2221.461669, 1846.853515, -62.792575, 0.000000, 0.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(938, 2221.461669, 1842.853515, -62.792575, 0.000000, 0.000000, -90.000000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(1265, 2220.584716, 1852.724487, -65.702484, 0.000000, 0.000000, 0.000000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(2674, 2222.299316, 1849.615478, -66.132484, 0.000000, 0.000000, 54.400028, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(2671, 2221.473144, 1843.005981, -66.142486, 0.000000, 0.000000, 87.800018, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(2673, 2210.171142, 1857.558471, -69.545509, 0.000000, 0.000000, 148.299987, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(2653, 2215.324218, 1860.157470, -63.302543, 0.000000, -180.000000, 0.000000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(2649, 2213.761718, 1858.149658, -63.792499, 0.000000, 0.000000, -180.000000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(2244, 2212.089111, 1864.227050, -69.365470, 0.000000, 0.000000, 0.000000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(1731, 2215.292480, 1858.779418, -65.258430, 0.000000, 0.000000, 90.000000, -1, -1, -1, 800.00, 800.00);?
tmpobjid = CreateDynamicObject(1735, 2209.480712, 1861.371459, -69.635528, 0.000000, 0.000000, 99.700050, -1, -1, -1, 800.00, 800.00);?
|
|
|
Open Game Panel - Problem |
Posted by: Sean17 - 2019-06-06, 03:48 AM - Forum: Support
- Replies (3)
|
|
IDK if this is the right board for this but sorry in advance
So I was hosting my Att/Def GM in Ultra-H and it's working well. When I transfer all my files to OGP the server crash always. I tried using the default grandlarc and it showed this
Code: Unable to start server on port: 7780. Port in use?
I don't know how to fix this. I tried changing the port in Server Config but after restart the port will go back to 7780.
BTW The error on the Att/Def Gamemode is this
Code: [16:32:50] [debug] Server crashed due to an unknown error
[16:32:50] [debug] Native backtrace:
[16:32:50] [debug] #0 f21a7180 in _Z13GetStackTraceRSt6vectorI10StackFrameSaIS0_EEPv () from plugins/crashdetect.so
[16:32:50] [debug] #1 f219f064 in _ZN11CrashDetect20PrintNativeBacktraceERSoRKN2os7ContextE () from plugins/crashdetect.so
[16:32:50] [debug] #2 f219fd64 in _ZN11CrashDetect20PrintNativeBacktraceERKN2os7ContextE () from plugins/crashdetect.so
[16:32:50] [debug] #3 f21a1cdb in _ZN11CrashDetect7OnCrashERKN2os7ContextE () from plugins/crashdetect.so
[16:32:50] [debug] #4 f21a64d5 in ?? () from plugins/crashdetect.so
[16:32:50] [debug] #5 f25bd410 in ?? ()
[16:32:50] [debug] #6 080a1145 in ?? () from ./samp03svr
[16:32:50] [debug] #7 080ab601 in ?? () from ./samp03svr
[16:32:50] [debug] #8 080aba0b in ?? () from ./samp03svr
[16:32:50] [debug] #9 080aa0fd in ?? () from ./samp03svr
[16:32:50] [debug] #10 f21e7637 in __libc_start_main () from /lib/i386-linux-gnu/libc.so.6
[16:32:50] [debug] #11 0804b4e1 in ?? () from ./samp03svr
[16:32:50] [debug] Registers:
[16:32:50] [debug] EAX: 0000001b EBX: 0ad665f8 ECX: 7fffffe8 EDX: 00000000
[16:32:50] [debug] ESI: 00000000 EDI: 00000000 EBP: fdc9b308 ESP: fdc9b1d0
[16:32:50] [debug] EIP: 080a1145 EFLAGS: 00010246
[16:32:50] [debug] Stack:
[16:32:50] [debug] ESP퍍㓓䴴: fdc9b1f0 081594f5 0ad665f8 f22ae13b
|
|
|
|