
blackberry
Members-
Posts
18 -
Joined
-
Last visited
Everything posted by blackberry
-
Hello community, some days ago, I started a server , Freeroam server. It has a lot of good scripts took on the resource section and bunch made by me (Im scripter). We have average of 3-4 players constant, we are looking to improve it. IM looking for someone/peoples, to help me making GFX, the logo (Login) , small details, making new objects texture ect. Im also looking for ideas, I cant tell what we have or dont have, but our server is well started, but it need much more advert and to get more known. Here are informations about server. Name: Freeroam/Stunt/Fun Server Ip: 178.21.21.23:22049 Slots: 32 Leaders: [FOTL]BlackBerry Co-Leader: [FOTL]Metalhead Levels: Same as DDC Servers X,10,9,8,7,6,5,4c,4b,4a,3,2,1 Commands you can try: /tp : /magnet : /push /smash (only on you) : /fix : /nos : Hold W+S And wait for boost. We have: Banks, Tunning shop, Food shop, Stunts, Fun commands, A good spawn, F1 panel, Chat Adverts about news ect ect. I hope having good replies and dont forget to visit us
-
My function : Tell if the player is inside or outside spawn , if inside, it takes out weapon when command is called spawnkill = createMarker(383.28732299805, 2538.4411621094, 15.459802627563 , 'checkpoint', 15, 255, 0, 0, 150) function spawnkill(thePlayer, matchingDimension) if isElementWithinMarker(thePlayer, spawnkill) then takeAllWeapons ( thePlayer) outputChatBox("No Weapons Inside Spawn!", thePlayer, 255, 0, 0) else outputChatBox("You can kill!", thePlayer, 255, 0, 0) end end addCommandHandler("spawnkill", spawnkill) But wtf this error happen: Bad argument @ 'isElementWithinMaker'
-
What you mean with Mapfile? I see all car respawn in th .map files, but I made spawn with map editor as usual.
-
I will try tonight, So this n may respawn at the Original spawn right? And what about respawn if vehicle is left for mmore than 2 minutes ? Set respawn delay right?
-
Yes I have, but I have more than 30 spawn.... Please Someone , help me!!!!!
-
I made a function that respawn cars when they explode (For My Freeroam server) Its simple, when the car explodes, it respawn one at the same place where it exploded. But What I really want is to respawn car at their original spawn when they move (hit or drive) or are damaged Here is my function: function respawnVehicle( vehicle ) spawnVehicle ( vehicle, getElementData( vehicle, "posX" ), getElementData( vehicle, "posY" ), getElementData( vehicle, "posZ" ), getElementData( vehicle, "rotX" ), getElementData( vehicle, "rotY" ), getElementData( vehicle, "rotZ" ) ) end function onVehicleSpawn () local x,y,z = getElementPosition (source) setElementData (source,"posX",x) setElementData (source,"posY",y) setElementData (source,"posZ",z) end addEventHandler ("onVehicleExplode",getRootElement(),onVehicleSpawn) function onVehicleExplode () setTimer( respawnVehicle, 5000, 1, source ) end addEventHandler("onVehicleExplode", getRootElement(), onVehicleExplode) Thanks
-
But can you help me fixing that? For me it help to begin
-
Hi,i use since some time the race_starter_pack ressource,but,when someone join my server,after the round,it makes him win...even when he has the state 'Waiting' on the Tab Panel. And i got an other problem,when you disconnect,it dont save your car,nick,and light color,you need to only open and close the panel and then your settings are back.... Thanks for help [MAD]BlackBerry (MAD Server)(DDC Admin)
-
Im looking for help with a respawn command pls
blackberry replied to blackberry's topic in Scripting
So is it posible to make one? -
Hello,im trying to figure out how can i respawn a player that his death(i mean bring him back to life) The gamemode is Deathmatch (Race DD/DM) i know my script should contain function pmFindPlayer ( text ) local player = getPlayerFromName ( text ) if ( player ) then return player end local lowtext = string.lower ( text ) for id , player in ipairs ( getElementsByType ( "player" ) ) do if ( string.find ( string.lower ( getPlayerName ( player ) ), lowtext , 1 , true ) ) then return player end end return false end And i know it should find where to respawn someone (i mean find the map respawn) At the end,i will be able to put the admin command only for admins Thanks for help and dont be shy for questions!!
-
i KNow its old topic but pls SEND ME THE LINK OF MTA:GUS x16 I WANT IT WHERE CNA I FIND IT PLS PM ME OR SEDN IT TO ME at [email protected]
-
AS you can see.i made only one level(Level 1) ,you are not obligated to edit it and add up to Level 10...if you want...I just need Level 1,2,3,4,5,6,7,8,9,10 So Admin is named (showed)as 10 , Super Moderator name (showed) as 9 Moderator As 8 and all other named (showed) as their level.... Thanks men,i really aprreciate your precious helping hand.... http://pastebin.com/tXgYQYf6
-
Hi,im trying to make a script,(edit one) I want the Script to sort all Admins on each cathegories (admin,moderator....ect)But i im dumb,and i dont know how i could do that.i can make small changes but never all the script... So when i type /admins it say: Online Admins: Level 10:[player1],[player2] Level 9:[player3] Level 8:[player4),[player5] Up to level 1..... Oh and i want it to be seen by all the serv(players) when someone type it I already Created my aclgroup of Levels,i just want to be showed on this ...thanks -- (/admins) local admins = "" function processAdminList() players = getElementsByType ( "player" ) admins = "" for k,v in ipairs(players) do local accountname = "" if (isGuestAccount(getPlayerAccount(v)) == false) then accountname = getAccountName (getPlayerAccount(v)) if isObjectInACLGroup ( "user." .. accountname, aclGetGroup ( "Admin" ) ) then if (admins == "") then admins = getPlayerName(v) else admins = admins .. ", " .. getPlayerName(v) end end end end end addEventHandler( "onPlayerLogin", getRootElement(), processAdminList ) addEventHandler( "onPlayerLogout", getRootElement(), processAdminList ) addEventHandler( "onPlayerQuit", getRootElement(), processAdminList ) function setAdminList(Player,command) if admins ~= "" then outputChatBox("Online Admins:"..admins , getRootElement(), 255 , 255, 0) else outputChatBox("No admins online." , getRootElement(), 255 , 255, 0) end end addCommandHandler("admins", setAdminList) --- !admins or !onlineadmins or !Admins function tAdmins(message,messageType) if message == "!admins" or message == "!Admins" or message =="!onlineadmins" then local playeraccount = getPlayerAccount(source) if admins ~= "" then outputChatBox("Online Admins: "..admins , getRootElement(), 255 , 255, 0) else outputChatBox("No admins online." , getRootElement(), 255 , 255, 0) end end end addEventHandler("onPlayerChat",getRootElement(),tAdmins) Thanks a lot
-
For your DMZ,it is on your router config page(normally 192.168.1.1) and you lokk up for the DMZ tabs,then you enter your pc local ip ,and here it is.. For my part i gonna try it.
-
It is ok,my port 22126 on TCP and UDP is forwaded too.I dont know wahats the problem. Help Me OMG
-
Hello, I have a MTA:SA server. it work succesfully on local -lan(i see the name) ,but it is not on master list (internet) but when i give the ip to someone,he is able to connect to it and play . Cause i set the enable game-monitor (on config file) and it load ok,it say Querying game-Monitro Master List ,but it never end,(supposed to show "sucess").Sometime it show it but its is still not on the master list or game-monitor ARGHH And when i disable it ,the server work ,(world can cannect)but no on the master list and game-monitor ALl my port and redirect/ip are ok and tested (player on world can ip connect) I dont know whats the problem Thank
-
Ok thank you,im sorry. Now when i use the MTA SA SERVER ,it take a lot of time to load the 185 ressources and then long time with the game monitor master list ? And everything should work like SA RACE but same thing happen,and what about remote? My ip is ok and my port too,thanks for you precious helping hand.
-
SORRY DOUBLE POST BUT I REALLY NEED HELP NOW hello,here is my situation,i created a server (MTA SA : RACE 1.1.1) with all the configurations and all my port are forwaded correctly to my pc ip. I start it,everything open ...blue server.....Game-Monitor Master update(i see the server on the website)..... But when i ask a person to try to enter my server (216.113.116.211) he dont see it The port is ok,The remote admin works in 1 ,2 and 3 (see schematics) but i dont see it ON LAN AND INTERNET I dont know what is the problem,and to confuse more,on the console i saw that someone connected on my server 2 min( a maps) and then disconnected...HOW DID HE FIND MY SERVER? Thanks for help ------Schematics----- My pc -192.168.1.102:22003 UDP TCP (1) My Local ISP -192.168.144.252:22003 UDP TCP (2) My ISP-216.113.116.211:22003 UDP TCP (3) Internet (4)