NinjaWa

Users
  • Content Count

    192
  • Donations

    0.00 EUR 
  • Joined

  • Last visited

Everything posted by NinjaWa

  1. NinjaWa

    Help with Deathrun mod.

    Hello guys, I'm NinjaWa, I have my own deathrun server, hosted thanks to Xenia Community. As I'm getting bored at school with subjects and I'm getting a bit bored of Promod and sometimes deathrun, I would like to help other people with deathrun mod or any other mod (I can try). So if any of you need something or have any question you can simply post your question or request here and I will try to do it. Anything, .menu's, .gsc's, .csv, anything you need Greez, NinjaWa.
  2. NinjaWa

    Remove Dead Bodies After delay (CoD4)

    Or make a loop script that toggles that command every (seconds here)
  3. NinjaWa

    Voting System

    HAHAHA don't make me laugh Lossy.
  4. NinjaWa

    Voting System

    HAHA saying it's easy but make it.
  5. NinjaWa

    No More Suicide As Activator

    Is it that difficult to make the activator...? I can make a script for you guys. Just ask me for it.
  6. I guess it's cracked. Install patches from 1.0 to 1.7
  7. NinjaWa

    Admin abuse

    I did and I would consider that an admin abuse.
  8. NinjaWa

    Admin abuse

    Why do you admins always are with your own admins even tho they aren't correct all the times? As a "Super Moderator" you should explain admins how to talk to players in a kind way so they can try to understand it, if they don't then you should make the next step but not a direct ban just for that. That's my opinion, try to be in the place of 0w0, imagine that you're not an admin and he is and he bans you because of that, wouldn't you be frustrated?
  9. NinjaWa

    $rules for Deathrun

    Or you can set to "self" and iprintlnbold or iprintln the nextmap. That will only appear to that user. Yes that is possible, it would be a REALLY easy script, even I could make it. If IceOps would want that I wouldn't have a problem in helping
  10. NinjaWa

    Unlimited Sprint

    Try using: player_sprintunlimited 1
  11. NinjaWa

    server_config

    Hmm go inside a .gsc script and call it somewhere where player connects or spawns and write this: self setclientdvar(" cg_drawcrosshair", 0); About the progressbar, I guess you will need to edit .menu, not sure which ones.
  12. NinjaWa

    Call of Duty 4 comeback?

    The games which 4D1 and aIW edited, never had dedicated server, thing that CoD4 has by itself.
  13. NinjaWa

    Call of Duty 4 comeback?

    I did read everything. I did read everything. I think that they would but they have better things to do I guess.
  14. NinjaWa

    Call of Duty 4 comeback?

    Kickstarter funding goal: $30,000 Minimum HA HA HA! Thats possible with less than 200€ tho But of course they will need to learn from professionals on how to code lol. It's .gsc scripting.
  15. NinjaWa

    Report for CAR sLOWERR

    Player's name: CAR sLOWERR Player's GUID or UID: Attached. Server: IceOps Deathrun Proof:  Please describe what happened: He auto assigned twice, the second time after telling him not to. Proofs here: https://gyazo.com/67c3e0e71da19da9067b19873972ee44 https://gyazo.com/4dc7c7e41a78a89d61c246c7974db924 https://gyazo.com/97a5661dac2646ae3b51ae93e860a7bf https://gyazo.com/4cc780e9aa7a515f7672395be9fc5302
  16. NinjaWa

    geoIP

    I'm sorry I tried :c
  17. japi birday :D

  18. WTF happened to your profile picture? HAHAHAHA

     

    It's like distorted or something, not like before HAHA :P

    1. DinoGrzmot

      DinoGrzmot

      Sad but true :( new forum dont like my photo [*] :( but if u click there is normal one :D

    2. NinjaWa

      NinjaWa

      Oooooooooooooooooh its like a ball :(

  19. NinjaWa

    geoIP

    It doesn't use MAM or B3 I think Tell people to come to your server so to test it, if not, try to set up b3 or mam.
  20. NinjaWa

    geoIP

    You can simply use a script made by Crazy from RoyalSoldiers. // ________/\\\\\\\\\__________________________________________________________ // _____/\\\////////___________________________________________________________ // ___/\\\/_________________________________________________________/\\\__/\\\_ // __/\\\______________/\\/\\\\\\\___/\\\\\\\\\_____/\\\\\\\\\\\___\//\\\/\\\__ // _\/\\\_____________\/\\\/////\\\_\////////\\\___\///////\\\/_____\//\\\\\___ // _\//\\\____________\/\\\___\///____/\\\\\\\\\\_______/\\\/________\//\\\____ // __\///\\\__________\/\\\__________/\\\/////\\\_____/\\\/_______/\\_/\\\_____ // ____\////\\\\\\\\\_\/\\\_________\//\\\\\\\\/\\__/\\\\\\\\\\\_\//\\\\/______ // _______\/////////__\///___________\////////\//__\///////////___\////________ init() { level.welcomegeo = undefined; level.iswaitingforgeo = undefined; for(;;) { level waittill("connected",player); if( !isdefined( player.pers["player_welcomed"] ) ) { player.pers["player_welcomed"] = true; // player welcomed player thread geo(); } } } geo() { level endon("disconnect"); location = self getgeolocation (2); while(isDefined(level.welcomegeo)) { wait .05; level.iswaitingforgeo = true; } level.iswaitingforgeo = undefined; level hudmsgtop("^1Welcome ^2" + self.name + " ^1From ^2" + location); } hudmsgtop(text) { level.welcomegeo = true; msg = addTextHud( level, 750, 5, 1, "left", "middle", undefined, undefined, 1.4, 888 ); msg SetText(text); msg.sort = 102; msg.foreground = 1; msg.archived = true; msg.alpha = 1; msg.fontScale = 1.5; msg.color = level.randomcolour; msg MoveHud(30,-1300); wait 15; msg destroy(); level.welcomegeo = undefined; } MoveHud(time,x,y) { self moveOverTime(time); if(isDefined(x)) self.x = x; if(isDefined(y)) self.y = y; } addTextHud( who, x, y, alpha, alignX, alignY, horiz, vert, fontScale, sort ) { if( isPlayer( who ) ) hud = newClientHudElem( who ); else hud = newHudElem(); hud.x = x; hud.y = y; hud.alpha = alpha; hud.sort = sort; hud.alignX = alignX; hud.alignY = alignY; if(isdefined(vert)) hud.vertAlign = vert; if(isdefined(horiz)) hud.horzAlign = horiz; if(fontScale != 0) hud.fontScale = fontScale; hud.foreground = 1; hud.archived = 0; return hud; }
  21. NinjaWa

    geoIP

    Hmmm there were a plugin of deathrun, let me search for it. EDIT: there's none It's actually hard to do it without b3 or mam I think, I have no clue on how that could be possible tho
  22. NinjaWa

    new killstrike

    I didn't find anything related to this, i'm sorry :'(
  23. NinjaWa

    Unlimited Sprint

    On mp folder and ui_mp and there should be subfolders, you should find something there
  24. NinjaWa

    new killstrike

    I have some private files I could take a look, I will reply as soon as I can
  25. NinjaWa

    Unlimited Sprint

    Must be inside a .gsc, what i usually do is open every .gsc file and then on npp i search for something in all documents, that should be it.