Looking for scripters/helpers? Post here!

Im looking for supporters for my DM server!
We are a new team, only 3 member. So adminposition is waiting for you.
Reply

Looking for admins and testers for the server in my signature. PM me.
Reply

Giving hosted tab in return for a high admin rank.
Script should be a good one not some shit where no one wants to play in
Reply

Interested on being part of a kind community?
Interested to help and build with us a huge community?
Check my signature and be a tester on our project now!
Reply

-remove-
Reply

////
Reply

Quote:
Originally Posted by KingPlayer
Посмотреть сообщение
Looking for a job as an administrator or graphics designer. I have some decent skills in both, and I am mature, professional and friendly. I do not need any payments, but, there are a few requirements:
  • The server needs to have hosted tab
    It has to be a roleplay server
    The server must have a medium playerbase (15-20) players daily
If you need any help, please send me a pm on the forums or add me on skype: adin.bradic1

Thank you!
Still looking! PM!
Reply

Looking for a scripter for our roleplay server its in hosted tab.
We could pay a little maybe.

Also looking for helpers/staff for the new server.
And also a mapper and designer.
Reply



Currently looking for people, who would like to become mapper on a TDM / Survival server - Zombieland.

Must be experienced in mapping, active and good knowledge in English language.

If you are interested, please send me a private message here in SA-MP Forums.


Thank you.
Reply

Hey, I need a scripter to help me to fix a problem I have in my script,
Problem is when I register to the server my vehicle storage is full with cars, anyone can help me?
Contact me - ron7897

Codes:

PHP код:
CMD:vstorage(playeridparams[]) 

    if(
PlayerTied[playerid] != || PlayerCuffed[playerid] != || PlayerInfo[playerid][pJailTime] > || GetPVarInt(playerid"Injured")) return SendClientMessageEx(playeridCOLOR_GRAD2"You cannot do this at this time."); 
    if(
PlayerInfo[playerid][pFreezeCar] == || PlayerInfo[playerid][pAdmin] >= 2
    { 
        new 
vstring[4096], icount GetPlayerVehicleSlots(playerid); 
        for(new 
iiModelIDicounti++) { 
            if((
iModelID PlayerVehicleInfo[playerid][i][pvModelId] - 400) >= 0) { 
                if(
PlayerVehicleInfo[playerid][i][pvImpounded]) { 
                    
format(vstringsizeof(vstring), "%s\n%s (impounded)"vstringVehicleName[iModelID]); 
                } 
                else if(
PlayerVehicleInfo[playerid][i][pvDisabled]) { 
                    
format(vstringsizeof(vstring), "%s\n%s (disabled)"vstringVehicleName[iModelID]); 
                } 
                else if(!
PlayerVehicleInfo[playerid][i][pvSpawned]) { 
                    
format(vstringsizeof(vstring), "%s\n%s (stored)"vstringVehicleName[iModelID]); 
                } 
                else 
format(vstringsizeof(vstring), "%s\n%s (spawned)"vstringVehicleName[iModelID]); 
            } 
            else 
strcat(vstring"\nEmpty"); 
        } 
        
format(vstringsizeof(vstring), "%s\n{40FFFF}Additional Vehicle Slot {FFD700}(Credits: %s){A9C4E4}"vstringnumber_format(ShopItems[23][sItemPrice])); 
        
ShowPlayerDialog(playeridVEHICLESTORAGEDIALOG_STYLE_LIST"Vehicle storage"vstring"(De)spawn""Cancel"); 
    } 
    else { return 
SendClientMessageEx(playeridCOLOR_GRAD2"Your vehicle assets have been frozen by the Judiciary.  Consult your local courthouse to have this cleared"); } 
    return 
1

PHP код:
if(dialogid == VEHICLESTORAGE && response) { 
        
//if(!(400 <= PlayerVehicleInfo[playerid][listitem][pvModelId] <= 611)) 
        //printf("DEBUG: listitem: %d, Vehicle Slots: %d", listitem, GetPlayerVehicleSlots(playerid)); 
        
if(listitem == GetPlayerVehicleSlots(playerid)) { 
            new 
szstring[128]; 
            
SetPVarInt(playerid"MiscShop"7); 
            
format(szstringsizeof(szstring), "Additional Vehicle Slot\nYour Credits: %s\nCost: {FFD700}%s{A9C4E4}\nCredits Left: %s"number_format(PlayerInfo[playerid][pCredits]), number_format(ShopItems[23][sItemPrice]), number_format(PlayerInfo[playerid][pCredits]-ShopItems[23][sItemPrice])); 
            return 
ShowPlayerDialog(playeridDIALOG_MISCSHOP2DIALOG_STYLE_MSGBOX"Purchase a additional vehicle slot"szstring"Purchase""Cancel"); 
        } 
        if(
PlayerVehicleInfo[playerid][listitem][pvSpawned]) { 
            new 
                
iVehicleID PlayerVehicleInfo[playerid][listitem][pvId]; 
            if((!
IsVehicleOccupied(iVehicleID) || IsPlayerInVehicle(playeridiVehicleID)) && !IsVehicleInTow(iVehicleID)) { 
                new 
                    
Floatvehiclehealth
                
GetVehicleHealth(iVehicleIDvehiclehealth); 
                if(
vehiclehealth 800) { 
                    
SendClientMessageEx(playeridCOLOR_WHITE"This vehicle is too damaged to be stored."); 
                } 
                   else if (
GetPVarInt(playerid"Refueling") == PlayerVehicleInfo[playerid][listitem][pvId]) 
                    
SendClientMessageEx(playeridCOLOR_WHITE"You can not store a vehicle while it is being refueled."); 
                else { 
                    --
PlayerCars
                    
VehicleSpawned[playerid]--; 
                    
PlayerVehicleInfo[playerid][listitem][pvSpawned] = 0
                    
PlayerVehicleInfo[playerid][listitem][pvFuel] = VehicleFuel[iVehicleID]; 
                    
DestroyVehicle(iVehicleID); 
                    
PlayerVehicleInfo[playerid][listitem][pvId] = INVALID_PLAYER_VEHICLE_ID
                    
g_mysql_SaveVehicle(playeridlistitem); 
                    new 
vstring[128]; 
                    
format(vstringsizeof(vstring), "You have stored your %s. The vehicle has been despawned."VehicleName[PlayerVehicleInfo[playerid][listitem][pvModelId] - 400]); 
                    
SendClientMessageEx(playeridCOLOR_WHITEvstring); 
                    
CheckPlayerVehiclesForDesync(playerid); 
                } 
            } 
            else 
SendClientMessageEx(playeridCOLOR_WHITE"This vehicle is currently occupied - it cannot be despawned right now."); 
        } 
        else if(
PlayerVehicleInfo[playerid][listitem][pvImpounded]) { 
            
SendClientMessageEx(playeridCOLOR_WHITE"You can not spawn an impounded vehicle. If you wish to reclaim it, do so at the DMV in Dillimore."); 
        } 
        else if(
PlayerVehicleInfo[playerid][listitem][pvDisabled]) { 
            
SendClientMessageEx(playeridCOLOR_WHITE"You can not spawn a disabled vehicle. It is disabled due to your VIP level (vehicle restrictions)."); 
        } 
        else if((
PlayerInfo[playerid][pRVehRestricted] > gettime() || PlayerVehicleInfo[playerid][listitem][pvRestricted] > gettime()) && IsRestrictedVehicle(PlayerVehicleInfo[playerid][listitem][pvModelId])) 
        { 
            
SendClientMessageEx(playeridCOLOR_GREY"You are not authorized to spawn this restricted vehicle."); 
        } 
        else if(!
PlayerVehicleInfo[playerid][listitem][pvSpawned]) { 
            if(
PlayerInfo[playerid][pDonateRank] == && VehicleSpawned[playerid] >= 2) { 
                
SendClientMessageEx(playeridCOLOR_GREY"As non-VIP you can only have 2 vehicles spawned. You must store a vehicle in order to spawn another one."); 
            } 
            else if(
PlayerInfo[playerid][pDonateRank] == && VehicleSpawned[playerid] >= 2) { 
                
SendClientMessageEx(playeridCOLOR_GREY"As Bronze VIP you can only have 2 vehicles spawned. You must store a vehicle in order to spawn another one."); 
            } 
            else if(
PlayerInfo[playerid][pDonateRank] == && VehicleSpawned[playerid] >= 2) { 
                
SendClientMessageEx(playeridCOLOR_GREY"As Silver VIP you can only have 2 vehicles spawned. You must store a vehicle in order to spawn another one."); 
            } 
            else if(
PlayerInfo[playerid][pDonateRank] == && VehicleSpawned[playerid] >= 3) { 
                
SendClientMessageEx(playeridCOLOR_GREY"As Gold VIP you can only have 3 vehicles spawned. You must store a vehicle in order to spawn another one."); 
            } 
            else if(
PlayerInfo[playerid][pDonateRank] == && VehicleSpawned[playerid] >= 5) { 
                
SendClientMessageEx(playeridCOLOR_GREY"As Platinum VIP you can only have 5 vehicles spawned. You must store a vehicle in order to spawn another one."); 
            } 
            else if(
PlayerInfo[playerid][pDonateRank] == && VehicleSpawned[playerid] >= 5) { 
                
SendClientMessageEx(playeridCOLOR_GREY"As Diamond VIP you can only have 5 vehicles spawned. You must store a vehicle in order to spawn another one."); 
            } 
            else if(!(
<= PlayerInfo[playerid][pDonateRank] <= 5)) { 
                
SendClientMessageEx(playeridCOLOR_GREY"You have an invalid VIP level."); 
            } 
            else if((
PlayerVehicleInfo[playerid][listitem][pvModelId]) < 400) { 
                
SendClientMessageEx(playeridCOLOR_GREY"The vehicle slot is empty."); 
            } 
            else { 
Reply

Do you have a medium/heavy RP server and looking for an experienced administrator? Active and forum devlopper? Im offering my services with no payments! If you are intrested, feel free to PM here.
Reply

Looking for community advisers and scripters/mappers.
For a roleplay server, hosted tab.
Reply

I am looking for professional graphic Designer, who's going to create a Logo for me, Service is going to be for free and maybe you will get admin position (depends in your skills)

Requirements:
- You must use Adobe Photoshop or something that silimar to Photoshop.
- If you used Generators to make the Logo, I will ignore it and I will list him in my ignore list.


If you have the following requirements, PM/VM me.

Best regards,
Shado/ShadyEG.
Reply

Looking for someone who's well experienced in being an administrator on roleplay servers? Looking for a good graphics designer? My services are for FREE! Make sure to PM/VM me or add me on skype: adin.bradic1!
Reply

Starting up a new RP server
In need of:
Admins,
Scripters (PAYED)

Hit me up: Skype; jdhk94
Reply

As one of our testers was busy, we now have 1 slot open for someone to join our team. We're focused on creating a hunger game server (Which is practically done). And we're looking for one more person to test, preferably in the GMT -8 timezone. If you're on the other side of the world, please disregard this message.

We're awaiting our host to provide us with a hosted tab as well. So hopefully we can find a reliable tester. If you're interested in joining our team, please message me on skype @ "Twackers". Hope to hear from you soon. You can view more information by checking out our website located in my signature.

Skype: Twackers
Skype2: aero-revolution
Reply

Hiring PHP developer for my personal project. Anyone here to help me?
Reply

Could someone script my server any scripters i really need help!
Reply

Looking for a PROFESSIONAL Chief of Police (LAPD styled) for a roleplaying community



add brasiexe on skype.
Reply

Looking for a good scripter.
Possible to pay a little, we have hosted tab.

If you can permanently be our scripter send me a pm.
Reply


Forum Jump:


Users browsing this thread: 6 Guest(s)