Jump to content

Paroxysm

Members
  • Posts

    199
  • Joined

  • Last visited

  • Days Won

    13

Posts posted by Paroxysm

  1. it's no texture but a sprite (ef_snow.spr)


    and hardcoded in the client. but you can disable it with a hex editor (I use Hexedit)


    open your client with Hexedit


    find: 786D61732E727377


    replace with: 0000000000000000


     


    - from Ridley of Hercules


    • Upvote 1
  2. On 4/3/2016 at 9:45 PM, Bachir Zitout said:

    :o Nice 10/10

     

    Thanks bro!

     

     

    On 4/4/2016 at 9:26 AM, WorldSeed said:

    10/10 For the first photo while for the 2nd one 8/10(It could have been a 10/10 but the design is almost similar to Warp Portal Design so there's not much creativity but other than that its a pretty good design (y) keep up the good work sir.

     

    Yea, the client ask me to make it similar to warp portal. thx for the ratings

     

    Kaiser RO - 85%

     

     

    Spoiler

    14szlte.jpg

     

    2klh20.jpg

     

     

     

     

     

    • Upvote 2
  3. Try this, I found it somewhere

    //====================================================================
    //===== Hourly Points Script =========================================
    //===== By: ==========================================================
    //= GorthexTiger modified by Nibi
    //===== Current Version: =============================================
    //= 1.0
    //===== Compatible With: =============================================
    //= Any eAthena Version / rAthena
    //===== Description: =================================================
    //= Get Points every successful hours of gameplay, you cannot get
    //= the points even if you miss a second or a minute. A player will
    //= get a very big bonus if they played 12 hours consecutively
    //= or without logging out of the game. If the player is vending
    //= the script will then stop.
    //===== Additional Comments: =========================================
    //= You can modify the script to your liking.
    //= The default points is Kafrapoints change it anyway if you like.
    //= 1.1 = Check Chatting too
    //= 1.2 = 5 Minute Idle Check & @at/@autotrade check.
    //= 1.3 = Corrected the current balance line on 12 Hours Consecutive
    //====================================================================
    
    
    - script hourlypoints -1,{
    OnPCLoginEvent:
        attachnpctimer ""+strcharinfo(0)+"";
        initnpctimer;
        end;
    
    
    OnTimer30000:
        if(checkvending() || checkchatting() || checkidle()) {
            dispbottom "The hourly points event stopped because you were vending / chatting / afk. Please relog if you wish to start again.";
            stopnpctimer;
            end;
        }
        end;
    
    
    OnTimer60000:
        set @minute, @minute + 1;
        if(@minute == 60){
            set @minute,0;
            set .@point_amt, 1;
            getitem 7179 .@point_amt;
            set @consecutive_hour, @consecutive_hour + 1;
        }
        if(@consecutive_hour == 6) {
            set @consecutive_hour,0;
            set .@cpoint_amt, 10;
            getitem 7179 .@cpoint_amt;
        }
        stopnpctimer;
        initnpctimer;
        end;
    }
  4. This was made from YHMWHY http://yhmwhy.com/

    Are you the one who designed this? if yes, congratulations overall very nice! /oops

     

    Hello, Yes tambraxx(a friend of mine) of yhmwy made stream and villain theme and I asked permission to post since I bought it for 500$ . I revised some of the elements used from the site e.g splash page. 

     

    Here are some of my works btw, I'll edit this topic with my own web templates after finishing it. Lots of projects in work as of now. Thank you

     

    RO Logos Showcase

     

    RO Signatures Showcase

×
×
  • Create New...