Looking for scripters/helpers? Post here!

Hy there. I'm new in SAMP scripting and I need a little help with a command that I've made. It's a /engine command that starts/stops the engine of a vehicle. The problem is that the engine only starts, and I'm not able to stop it anymore. Here's the code to the command. Thanks in advance for your help!

Код:
if(strcmp(cmd, "/engine", true) == 0)
{
     if(IsPlayerInAnyVehicle(playerid))
     {
	    if(IsPlayerConnected(playerid))
	    {
		  new engine,lights,alarm,doors,bonnet,boot,objective;
    	          new carid = GetPlayerVehicleID(playerid);

		  if(engine == 0)
    		  {
    	          GetVehicleParamsEx(carid,engine,lights,alarm,doors,bonnet,boot,objective);
		  SetVehicleParamsEx(carid,VEHICLE_PARAMS_ON,lights,alarm,doors,bonnet,boot,objective);
    		  SendClientMessage(playerid, 0xFFFFFFAA, "Ai pornit motorul vehiculului. {2F991A}Engine on");
       		  }
		  else if(engine == 1)
		  {
		  GetVehicleParamsEx(carid,engine,lights,alarm,doors,bonnet,boot,objective);
		  SetVehicleParamsEx(carid,VEHICLE_PARAMS_OFF,lights,alarm,doors,bonnet,boot,objective);
		  SendClientMessage(playerid, 0xFFFFFFAA, "Ai oprit motorul vehiculului. {2F991A}Engine off");
		  }
	    }
      }
      return 1;
}
Reply

Quote:
Originally Posted by Dark_Breed
Посмотреть сообщение
Hy there. I'm new in SAMP scripting and I need a little help with a command that I've made. It's a /engine command that starts/stops the engine of a vehicle. The problem is that the engine only starts, and I'm not able to stop it anymore. Here's the code to the command. Thanks in advance for your help!

Код:
if(strcmp(cmd, "/engine", true) == 0)
{
     if(IsPlayerInAnyVehicle(playerid))
     {
	    if(IsPlayerConnected(playerid))
	    {
		 new engine,lights,alarm,doors,bonnet,boot,objective;
    	         new carid = GetPlayerVehicleID(playerid);

		  if(engine == 0)
    		  {
    	          GetVehicleParamsEx(carid,engine,lights,alarm,doors,bonnet,boot,objective);
		  SetVehicleParamsEx(carid,VEHICLE_PARAMS_ON,lights,alarm,doors,bonnet,boot,objective);
    		  SendClientMessage(playerid, 0xFFFFFFAA, "Ai pornit motorul vehiculului. {2F991A}Engine on");
       		  }
		  else if(engine == 1)
		  {
		  GetVehicleParamsEx(carid,engine,lights,alarm,doors,bonnet,boot,objective);
		  SetVehicleParamsEx(carid,VEHICLE_PARAMS_OFF,lights,alarm,doors,bonnet,boot,objective);
		  SendClientMessage(playerid, 0xFFFFFFAA, "Ai oprit motorul vehiculului. {2F991A}Engine off");
		  }
	    }
      }
      return 1;
}

pawn Код:
if(strcmp(cmd, "/engine", true) == 0)
{
    if(IsPlayerInAnyVehicle(playerid))
    {
        if(IsPlayerConnected(playerid))
        {
            new engine,lights,alarm,doors,bonnet,boot,objective;
            new carid = GetPlayerVehicleID(playerid);
            GetVehicleParamsEx(carid,engine,lights,alarm,doors,bonnet,boot,objective);

           if(engine == 0)
           {
               SetVehicleParamsEx(carid,VEHICLE_PARAMS_ON,lights,alarm,doors,bonnet,boot,objective);
               SendClientMessage(playerid, 0xFFFFFFAA, "Ai pornit motorul vehiculului. {2F991A}Engine on");
           }
           else
           {
               SetVehicleParamsEx(carid,VEHICLE_PARAMS_OFF,lights,alarm,doors,bonnet,boot,objective);
               SendClientMessage(playerid, 0xFFFFFFAA, "Ai oprit motorul vehiculului. {2F991A}Engine off");
           }
        }
    }
    return 1;
}

Next time post in scripting help section.


Looking for a long-term partner who is capable of helping me with the development of a RP server (Non MySQL). The server is currently in early non-open Alpha stage and is of course developed from scratch. There's currently a unique textdraw-based register/login system, semi-dynamic unique vehicle system (dealerships being static, the rest dynamic), house system which is fully dynamic with a few unique maps added and a few more things.

I have been developing this server for six months now and so far I have done everything myself besides one map being made by a partner who had to quit due to school exams. I am very active and dedicate at least a few hours on the project every day, counting to hundreds of hours.

The problem is that sometimes I lack motivation and therefore I need a partner which at all times is interested in bringing the project to the next stage. The one I am looking for should be;

✶ Experienced when it comes to traditional RP SA-MP servers.
✶ Someone who is willing to dedicate a lot of his/her time on this.
✶ Able to communicate in the English language fluently.
✶ A positive person with a good spirit that is trustworthy.
✶ Someone who is not jumping from project to project.
✶ A person who is not joining for the sake of money.
✶ A person living close (4 hours +/-) from GMT + 1. - http://24timezones.com/
✶ Able to use the SA-MP map editor by JernejL to create exteriors/interiors.


Further, there's a bonus if the person in question has the following:

♢ Artistic when it comes to creating logos, banners and other design.
♢ Have an extensive knowledge when it comes to mapping fundamentals.
♢ Have experience when it comes to websites and forums.
♢ Experience when it comes to administrating for other servers.
♢ Being able to implement small features to the script such as,
* Adding vehicles, * Creating commands, * Implementing dialogs

Feel free to add more information when you apply for this position. You will be the co-owner of the server if you help me develop it. Please note:

Fill out all the above stars/bullet points with an added comment below each starting with a dash (-) example:

Quote:

♢ Experience when it comes to administrating for other servers.
- Yes, I have been administrating a lot of servers.

Then send it in a PM. I WILL CONTACT YOU IF I AM INTERESTED, IF I DID NOT CONTACT YOU WITHIN 5 WORKING DAYS YOUR APPLICATION WAS DENIED SO PLEASE REFRAIN FROM POSTING ANY FURTHER APPLICATIONS THE SAME WEEK. I will not respond to any questions asked in this thread. Thank you.
Reply

I've been experiencing this bug in which if i set someone admin and he left and another player joined and took his ID that player will become admin. Any idea what might be causing it?

Help will be appreciated. Reward - +1 rep.
Reply

Quote:
Originally Posted by TheKevo
Посмотреть сообщение
I've been experiencing this bug in which if i set someone admin and he left and another player joined and took his ID that player will become admin. Any idea what might be causing it?

Help will be appreciated. Reward - +1 rep.
Post in scripting help instead lol. You should reset the variable by giving it the value of zero every time the player connects. You can't give out reputation with that post count.
Reply

I need someone who can help me to upload my server on traingls.gs
PM me if you are interested
Reply



Hello, SA-MP members!
My name is Dairis and I'm from Latvia. I right now am working on Cops And Robbers server, its about to be finished for first version, but i have not enough funds. So i am searching for an investor.

There are Police, SWAT, FBI, CIA, Army, Air Support, Medic, Mechanic, Taxi driver, Civilan classes.
In Civilian class are skills, like Rapist, Thief, Kidnapper, Terrorist, Drug dealer, Weapon dealer, Hitman.
There is a store called Supa Save, where you are able to buy items and toys.

Picture 1
Picture 2

Kind Regards,
BodyBoardVEVO
Reply

looking to invest into a unique TDM script

PM me for details
Reply

I currently have a GM that mirrors the popular LS-RP server in many ways in terms of functioning.

I'm looking for a few scripters that can help me along my path of making this into a great RP server. I'm going to need alot of simple things done for example I will need help cleaning up my economy and making it more realistic this will mean adjusting certian prices of objects that are allready scripted in like cars and such. I want anyone who wants to work with me to veiw this as a partnership. I do not plan to ever stop developing this server as there will ALLWES be cool things for people to add in an adjust so in term I will allwes need a DEV team working with me as my partners in this.

Please, PM me on forums or add me on skype: Cash.Mill

Some current function scripts in the server are:
Carmodding/car storage slots
Housing/furniture editing
XMR radio
When you kill somone that has a gun on them there gun drops on the ground... not in a big circle like traditional GTA but on the ground in a realistic fashion to be picked up with the command /grabgun
And lots more.

We're going to need to edit my trucking job, and a few more things so no one be scared to offer up any cool jobs plugins or anything of the sort. Also, I would like it if somone could eliminate Lag Shooting from my serever if that is at all possible.

Also, I will pay for certian things if needed, I'm not a cheap man but have allready spent about 500$ usd in the development of this GM and would rather split potential profits with my DEV team in the future
Reply

I NEED A SCRIPTER / HELPER

i would like to have /fly command to my roleplay mode for admins lvl 2 and up only please help me ))))
Reply

I'm looking to work for a TDM/CnR community. Contact via PM.
Reply

Needing Investors and donors for COD WF community. We are on hosted tab and have a good player base during the weekends. We lack money to buy a domain for ourself btw we got money for everything and we are well organised. Please send me a /pm or add me on Skype kevo.rone1. You will be rewarded for sure like staff positions and will re pay you the money from donation.
Reply

Quote:
Originally Posted by Xaera
Посмотреть сообщение
Hello,I'm Cem

I'm looking for scripters for my server , if you interested pm me on forums ,i'll give you more information about server and what we need to do about scripting stuff , all i wanted to say that'll RP server and basic script systems , i dont wanna push person to make something harder the systems will be simple and basic level thats what i planned in my mind,i'll not going to pay anything for scripters or scripter ,i'm looking for a person who have free time and willing to help me to improve my server.


Best Regards.
Hey im a beginner scripter and i can help you attach objects to car or make cool cars and also i can add filterscripts to gamemode and things like that i also have a very own server of mine so im a really good admin if u want to see my server or to attach objects to car then my ip is 42.201.209.188:7777
Reply

Needing Investors and donors for COD WF community. We are on hosted tab and have a good player base during the weekends. We lack money to buy a domain for ourself btw we got money for everything and we are well organised. Please send me a /pm or add me on Skype kevo.rone1. You will be rewarded for sure like staff positions and will re pay you the money from donation.
Reply

Looking for mature players, you will be tested and given moderator rank if we think you're suitable. PM me if interested.
Reply

Looking for matured admins / moderators for my cops and robbers server. 100 slots, good ping, advanced admin commands.
If you're interested, PM me.
Reply

I'm looking for a scripter who can help me with my Derby System and a few more things for free.
Contact me via PM or Skype: ssyntax_1
Reply

Advanced scripter, been scripting for 3 years. Looking for work, paid only.

Message me or add me on skype: matty.slater2
Reply

Looking for mapper.

to map team bases and capture zones.

not willing to pay, but ofcourse I'll repay as appriciations.
Reply

Hello everyone. I am looking for a Scripter that can Help me with a Roleplaying Script... My Budget is 400 U.s.D Money Thats all i can spear for this. If you would like to join with the Crew you can you will be a Admin and When we get Donations we will also pay you something monthly as well. If you would like. But i am looking for someone Now. you can Add me on Skype just look for me thru my Email NySwat19@hotmail.com or Email me....

Again 400 USD for you! now Please understand You must have a good background and be known... Everything is thur Paypal. and Protected in case of scammers. I would Rather the Scripter be in the United States If possible or around new york area. where we can keep in Moblie contact or anything thanks . If you outside of the United states that is fine as well...
Reply

Hy !
Im currently looking for a players , donators , administrators on my TDM Server
For Donators will get some special reward as staff level
For Administrators you can PM me on SA:MP Forum
Reply


Forum Jump:


Users browsing this thread: 4 Guest(s)