Setting the time during a key press is a very useful feature to prevent occasional hacking or delays in some scripts.
good job.
good job.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: gamingpro on Jan 28, 2024, 07:54 AMHey, just add announce plugin in server.cfgHi bro, Can you tell me how you port forward please ?, because i try it but not success please tell me, Are port forward show server in masterlist or not ?
Quote from: Gulk on Oct 01, 2023, 03:23 PMTry setting the vehicle weight very high when its unoccupied.It's seems a good idea :p
Quote from: 2b2ttianxiu on Oct 01, 2023, 12:50 PMwhen newX, newY or newZ == 0, bool is false and the vehicle can move. but is so less problemI have created the system & it's working great.
Quote from: vitovc on Sep 16, 2023, 03:48 PMwell you can look into ctf's clientside scripts. its GUI_FLAG_3D_ENTITY flag + Position3D Rotation3D values (in ctf its hardcoded, to calculate them you need to google some math or just playing with different values manually)Alright, but those lignes & columns have been created by DecUI ?
Quote from: habi on Sep 10, 2023, 07:04 AMwill that work datablob.writenstring because that is not listed in squirrel's reference.https://developer.electricimp.com/squirrel/blob/writestring
Quote from: habi on Sep 10, 2023, 07:04 AMTo write float,I need to write a string, if there is no way to insert string into blob, then how i can insert string into array ?
local Array = [0];
Array.insert(0, "+vehicle.Pos.x+");
Message("here is your x: "+Array.find(0));
local dataBlob = blob(512);
dataBlob.writestring(vehicle.Pos.x);
Message("here is your x: "+dataBlob.readblob(512));
But i get error in the second line, "data types string expected float/integer"