AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   New Plugin Submissions (https://forums.alliedmods.net/forumdisplay.php?f=26)
-   -   Modern warfare 2 Mod v1.3.6b (https://forums.alliedmods.net/showthread.php?t=165939)

D.Moder 08-30-2011 00:44

Re: Modern warfare 2 Mod (beta)
 
remove

claudiuhks 08-30-2011 05:43

Re: Modern warfare 2 Mod (beta)
 
Remove the StartFrame forward because it is creating too much CPU...

PHP Code:

public fw_Spawn(entity){
/////////////////////////////////if (!pev_valid(entity)) return FMRES_IGNORED
    
new classname[32]
    
pev(entitypev_classnameclassnamecharsmax(classname))
    
    for (new 
0<= charsmax(g_objective_ents); i++){
        if (
equal(classnameg_objective_ents[i])){
            
engfunc(EngFunc_RemoveEntityentity)
            return 
FMRES_SUPERCEDE
        
}
    }
    return 
FMRES_IGNORED


The spawned entity can't be an invalid one, lol!

Also, why are you using engine and fakemeta both?
Catch the PreThink and PostThink forwards with Hamsandwich and the pfn_touch forward with fakemeta!

PHP Code:

public event_CurWeapon(id)
{
    
// get the weapon
    
new wid get_user_weapon(id

=>

PHP Code:

static iwid;
iwid=read_data(2); 

Use the nvault extension for save the player's data

alonelive 08-30-2011 15:19

Re: Modern warfare 2 Mod (beta)
 
Make a video or screens !!

D.Moder 08-30-2011 15:57

Re: Modern warfare 2 Mod (beta)
 
@claudiuhks thanks a lot, I think thats better now!

D.Moder 09-01-2011 15:22

Re: Modern warfare 2 Mod (beta)
 
update:
Added Multi language feature
Languages:
English
Español
Português
Polszczyzna
Deutsch
Lietuva
Dansk
Français
Română
Česká republika
Slovenská republika
Svenska
Nederlands

modernwarfare 09-01-2011 16:07

Re: Modern warfare 2 Mod (beta)
 
Quote:

Originally Posted by D.Moder (Post 1545825)
update:
Added Multi language feature
Languages:
English
Español
Português
Polszczyzna
DeutschLietuvaDansk
FrançaisRomână
Česká republika
Slovenská republika
Svenska
Nederlands


who translated all that langs for you?

no one do it for my plugin :(

drekes 09-01-2011 19:30

Re: Modern warfare 2 Mod (beta)
 
You have some serious mistakes in your dutch (nederlands) translation.
I'll try to fix them when i have some spare time tomorrow.

@modernwarfare
I'll maybe look into your dutch translation too.

D.Moder 09-02-2011 01:14

Re: Modern warfare 2 Mod (beta)
 
Quote:

Originally Posted by modernwarfare (Post 1545885)
who translated all that langs for you?

no one do it for my plugin :(

I used Google translate!

@drekes that will be appreciated if you do!

drekes 09-02-2011 03:41

Re: Modern warfare 2 Mod (beta)
 
Fixed dutch:

Code:

[nl]
ENABLE = Ingeschakeld
DISABLE = Uitgeschakeld
HELP_MESSAGE = [MW2] je speelt Modern Warfare 2 Mod. (Druk op 'M' voor Menu)

MENU_L0 = \r [MW2] Game menu:
MENU_L1 = \d Killstreaks
MENU_L1B = \d Killstreaks [F4]
MENU_L2 = \w Klasse maken
MENU_L3 = \w Kies Klasse
MENU_L3B = \w Kies Klasse [F3]
MENU_L4 = \d Respawn
MENU_L4B = \w Respawn
MENU_L5 = \w Help
MENU2_L0 = \w KLASSE MAKEN:
MENU2_L0B = \r Kies Klasse:
MENU3_L0 = \w Kies een blauw perk:
MENU4_L0 = \r Kies een rood perk:
MENU5_L0 = \y Kies een groen perk:
MENU6_L0 = \w Kies uitrusting:
MENU7_L0 = \w Wilt u F3 = Kies klasse binden, F4 = Gebruik Killstreak?
MENU7_YES = \r Ja
MENU7_NO = \r Nee

HUD_CLASS = Klasse
HUD_RANK = Rank
HUD_REQXP = Nodige XP
HUD_PRM = Actie!
HUD_PRS = Prestige
HUD_FRIEND = Vriend
HUD_ENEMY = Vijand
HUD_PREDATOR = Druk op F voor snelheids boost
HUD_PREDATORB = MAX SNELHEID

INFO_PROMOTED = Je bent gepromoveerd!
INFO_KS_USE = Druk op F4 om te gebruiken
INFO_KS_USEB = Druk op M-1 om te gebruiken
INFO_CP_PICKUP = Houd 'E' in om op te pakken

KS_CP_TOOK = nam uw krat
KS_CP_TOOKB = uw krat is genomen
KS_CP_RESUPPLY = [bevoorraden]

MOTD_L1 = Knoppen
MOTD_L2 = Game menu
MOTD_L3 = Kies klasse
MOTD_L4 = Gebruik Killstreak
MOTD_L5 = Melee
MOTD_L6 = Gebruik Equipment
MOTD_L7 = C4 Detonator
MOTD_L8 = Flash
MOTD_L9 = Grenade Launcher
MOTD_L10 = Let op: de Killstreak beloningen zijn niet als in het originele spel!

INFO_MARTYRDOM = [Martyrdom , Laat een granaat vallen als je sterft]
INFO_LASTSTAND = [Last Stand!]
INFO_STUCK = [Heeft Semtex op jou gegooid]
INFO_DESTUAV = vernietigde UAV

CLASS_NOT = Originele klasse kan niet worden gewijzigd.
CLASS_CHANGING = Klasse veranderen...
CLASS_CHANGED = Klasse is gewijzigd.
CLASS_NEXT = Klasse zal veranderen op de volgende respawn.
CLASS_SET = [MW2] Klasse is ingesteld.

KS_MAX = Te veel Killstreak beloningen!
EMP_BLOCKS = Uw team is empd, alle elektronica is offline!
NUKE_BLOCKED = Een Tactical Nuke is al gelanceerd.
SENTRY_DEST = Uw Sentry Gun is vernietigd.
SENTRY_LIMIT = [MW2] U kunt maar een Sentry Gun tegelijk plaatsen!
TKNIFE_OUT = Geen werpmessen meer!
TI_OUT = Geen Tactical Inserties!
C4_OUT = Geen C4'S!
CLAYMORE_OUT = Geen Claymores!


modernwarfare 09-02-2011 04:04

Re: Modern warfare 2 Mod (beta)
 
Quote:

Originally Posted by drekes (Post 1546036)
You have some serious mistakes in your dutch (nederlands) translation.
I'll try to fix them when i have some spare time tomorrow.

@modernwarfare
I'll maybe look into your dutch translation too.


thx and look the plugin thread i added it and you ahve credits

in the translate thread

http://forums.alliedmods.net/showthread.php?t=165541


All times are GMT -4. The time now is 09:01.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.