Jump to content
View in the app

A better way to browse. Learn more.

GTAGames.nl - De Nederlandse Grand Theft Auto Community!

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

wie weet een filterscript waar je een family's kan doen(geen game mode dus ik heb penls)

ik moet in mijn penls een family hebben bijv /joinfamily dat je in die family komt wie weet zo iets

en wie weet hoe je een admin skin kan maken dus een police skin aleen voor admins

en hoe je gang zone's moet maken

en wie weet hoe ik een ADMIN AREA moet maken dat weet ik nog steeds niet

MVG raimon.

(ben nog niet zo goed in scripten en ik wil het wel goed leren!)

Featured Replies

- Family's: Geen idee (je kan daarvoor zoiets als 'teams' gebruiken kijk daarvoor ff in de lvdm gamemode)

- Adminarea: Daar heb ik een tutorial voor gemaakt: >>Klik<<

- Gangzones: geen ervaring mee.

- Adminskin:

Gelukkig had ik nog een pb'tje opgeslagen die ik eens naar iemand moest sturen:

Ik weet niet hoe je ervoor kan zorgen dat je niet kan spawnen als je een adminskin hebt maar geen admin bent.

Ik kan er alleen voor zorgen dat als je spawnt met zo'n skin, dat je dan een tekst in beeld krijgt, je dood gaat en dan weer een nieuwe skin moet kiezen:

Zet dit bij OnPlayerSpawn:

new Skin;
Skin = GetPlayerSkin(playerid);
if((Skin == 93) && (!IsPlayerAdmin(playerid))) 
{
GameTextForPlayer(playerid, "~r~Only Admins are allowed to use this skin! ~n~Please choose an	 other skin!", 6000, 3);
SetPlayerHealth(playerid, 0);
ForceClassSelection(playerid);
}

Verander die '93' naar het skin-id dat de admins moeten hebben.

Als je wilt dat er al bij de class-selection al een teskt in beeld komt met "admin only" dan moet je dat als volgt doen:

Zet dit bij OnPlayerRequestClass:

switch(classid)
{
case 0: {GameTextForPlayer(playerid, "~r~Admin Only!!", 1000, 3); }
case 1: {GameTextForPlayer(playerid, ">>tekst voor 2e skin<<", 10000, 3); }
case 2: {GameTextForPlayer(playerid, ">>tekst voor 3e skin<<", 1000, 3); }
}

Let op: je moet de adminskin dan wel bovenaan bij de addplayerclasses zetten!!

public OnGameModeInit()
{
AddPlayerClass(0,2494.4888,-1675.5619,13.3359,55.9011,0,0,0,0,0,0); // <<-- Adminskin
AddPlayerClass(93,2494.4888,-1675.5619,13.3359,55.9011,0,0,0,0,0,0); 
AddPlayerClass(203,2494.4888,-1675.5619,13.3359,55.9011,0,0,0,0,0,0);

Je moet nog wel het id van de skin veranderen .

Ik hoop dat je het snapt..

Groetjes Sandra

Edited by Sandra18[NL]

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

Recently Browsing 0

  • No registered users viewing this page.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.