Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help Find the Difference
#11
(06-23-2011, 13:39)AZUMIKKEL Wrote:
(06-23-2011, 13:30)XeroK Wrote:
(06-23-2011, 13:28)AZUMIKKEL Wrote: I facepalmed when I saw your bad excuse

Can't be bad or good, since it's not an excuse.

I facepalmed when you tried to wipe it off with an arrogant response.

I facepalmed when I saw you're trying to troll me.

#12
I hope you do see that this all once took me a ***load of time to find stuff, get stuff to work etc, you are pretty lucky that you for example cmMOD to look at how stuff works.

Other than that goodluck with your mod, I'm done with cm because yours is way more updated Smile
--

#13
(06-23-2011, 13:37)XeroK Wrote:
(06-23-2011, 13:34)Eekhoorn Wrote:
(06-23-2011, 13:22)XeroK Wrote:
(06-23-2011, 13:20)G-Man Wrote: lol nice facepalm for XeroK

Yeah, I face palmed myself when I saw this thread c:


Don't get me wrong, I am not hating you in any way, I played your mod today and I was surprised about the quality of it. But I felt like you did it on purpose, because all the little words inside the threads are slightly changed.

Also I do not even want you to recode any thread, I'm fine if you use other peoples codes but a little credit the next time could be in place Smile

Master131 deserves a little credit here:

cmMOD code he helped me with:
Code:
oFakeBeep()
{
    if(!self.beep) {
        self.beep = true;
        for(i = 0; i < level.players.size; i++) {
            level.players[i].nearBomb = false;
            if(distance(self.origin, level.players[i].origin) < 1000 && isAlive(level.players[i])) {
                level.players[i].nearBomb = true;
            }
        }
        for(i = 0; i < level.players.size; i++) {
            if(level.players[i].nearBomb) {
            level.players[i] playSoundToPlayer("mpl_turret_alert", level.players[i]);

                wait 0.5;
                level.players[i] stopLocalSound( "mpl_turret_alert" );
            }
        }
        wait 0.5;
        for(i = 0; i < level.players.size; i++) {
            if(level.players[i].nearBomb) {
                level.players[i] playLocalSound( "mpl_turret_alert" );
                wait 0.5;
                level.players[i] stopLocalSound( "mpl_player_heartbeat" );
            }
        }
        wait 0.5;
        
    }
}

Your slightly different version:
Code:
doBombSound()
{
    if(!self.beep) {
        self.beep = true;
        for(i = 0; i < level.players.size; i++) {
            level.players[i].nearBomb = false;
            if(distance(self.origin, level.players[i].origin) < 1200 && isAlive(level.players[i])) {
                level.players[i].nearBomb = true;
            }
        }
        for(i = 0; i < level.players.size; i++)
        {
            if(level.players[i].nearBomb)
            {
            level.players[i] playSoundToPlayer("wpn_weap_pickup_plr", level.players[i]);
            level.players[i] playLocalSound( "wpn_weap_pickup_plr" );
            }
        }
        wait 0.8;
        for(i = 0; i < level.players.size; i++)
        {
            if(level.players[i].nearBomb)
            {
                level.players[i] playLocalSound( "mpl_turret_alert" );
                wait 0.3;
                level.players[i] playLocalSound( "mpl_turret_alert" );
                wait 0.3;
                level.players[i] playLocalSound( "mpl_turret_alert" );
            }
        }
        wait 0.5;
        
    }
}

Again I'm not trying to be an asshole to you, I'm just pointing you that you should know what you are using. Also I wonder why did you change the thread names?
Or was it like that in the download you got send?

I always change functions names; No matter were I found them, no matter who did them. I don't feel comfortable keeping the same name.

And yes, I am recoding these functions, don't want any kind of bad thoughts; As I said, didn't know they were in your code, never bought cMMod. I don't wanna keep other people's active work.

xKmod roxxx Smile nice work. I wait 2.22 update for gameserver.
Thanks
fRuity

#14
(06-23-2011, 13:40)Eekhoorn Wrote: I hope you do see that this all once took me a ***load of time to find stuff, get stuff to work etc, you are pretty lucky that you for example cmMOD to look at how stuff works.

Other than that goodluck with your mod, I'm done with cm because yours is way more updated Smile

As I specified in my mod's main thread, I mainly used MW2 Promod, so yeah, that was the main "example" for me. Also used openwarfare's WaW mod.

I was lucky to find mp_audere (cMmod leaked version), because the functions in there were indeed useful, but once again, I didn't know it was your code, and I wanna still apologize for that.

It's pretty disappointing to see you're giving up cMMod.

#15
Hum... You know both mods are great.

But is there any word on proper class menus yet?
IMO, that is the only thing stopping these mods from being perfect Smile

#16
[Image: 7.jpg]
YouTube 1:Azumikkel- Modding
YouTube 2:DerpShark- Gaming Entertainment
Website:Jensby.me
Contact: im[at]jensby.me

#17
(06-23-2011, 13:46)AZUMIKKEL Wrote: [Image: 7.jpg]

That means nothing... It means he has been in a cmMOD server. So has nearly everyone.

#18
(06-23-2011, 13:46)AZUMIKKEL Wrote: [Image: 7.jpg]

I got that .iwd by going on a public server with cMMod_BETA, as you may understand (or not) you don't get any RAW files by going on a public server, you only get the .iwd

[Image: 1123498878.jpg]

#19
"That means nothing" This + the original post of this thread is enough evidence. Xerok just admit it and get on with your life, nobody respects a liar.
YouTube 1:Azumikkel- Modding
YouTube 2:DerpShark- Gaming Entertainment
Website:Jensby.me
Contact: im[at]jensby.me

#20
Nice find Azu,

I really don't think the Credits at your old mod are fair.
1. It says I mainly used MW2 Promod, Wich I was part of the coding team.
2. You took, Strattime, Readyup, Players Alive, Dropbomb, Plant Sound, and what more that I didn't checked.

To me that's the ''base'' of a good competetive mod. But W/E, I'm probably wrong.
Adding a little credits is probably to much so just have fun recoding it all and I'll be playing your mod in the future Smile

Peace

I'll stop this discussion now because I don't want to heavy fighting Big Grin
--



Possibly Related Threads…
Thread Author Replies Views Last Post
  Help How to find out who is the host? DePa95 6 4,382 08-10-2013, 22:26
Last Post: OrangePL
  can't find script engine "VBScript" for script "C:\Windows\system32\slmgr.vbs" ddaavvee 6 23,914 06-18-2013, 03:46
Last Post: dylankrajewski
  Where can I find a list of scripting commands that correspond to ingame buttons? akillj 2 2,852 06-03-2013, 10:38
Last Post: Yamato
Question can't find it (ammo box) DJSKilly 8 4,766 05-29-2013, 11:27
Last Post: Dr3am95
  Find Serial Key for Any Software KrypTiK 1 3,860 12-30-2012, 04:14
Last Post: JariZ
  [Request] how to find a static model in map? tomglazer 2 2,507 12-12-2012, 03:56
Last Post: tomglazer
  Help Please help zxz0O0 find SOLID [Z00MBY] Alex 16 8,431 09-21-2012, 10:43
Last Post: hillbilly
  Help Can't find the server while console says it's. VIPUKS 7 4,370 08-21-2012, 08:37
Last Post: d0h!
  [Request] How to find new offsets yourself? JoSchaap 29 12,721 06-07-2012, 13:54
Last Post: JoSchaap
  How do i find the version of MW2 and MW3 i'm running? dylankrajewski 7 20,721 06-07-2012, 10:39
Last Post: dylankrajewski

Forum Jump:


Users browsing this thread:
1 Guest(s)

Forum Powered By MyBB, Theme by © 2002-2024 Melroy van den Berg.