Jump to content

  •  

uzami

Member Since 04 Feb 2016
Offline Last Active May 28 2016 03:38 PM
-----

Topics I've Started

Character Creation Screen

25 April 2016 - 04:56 AM

well... Here I am, again! haha
I was searching some stuffs on google and I saw that image (attach file)
and I start wondering... On the Doran Classe creation exist this possibility, select a "race" hair style and etc
and on my server i'm working with a race system but i using the Hairstyle to define them..
 
Like:
Human - Hair from 01 to 22 /
Miqo'te - Hair form 23 to 29 /
Alf - Hair 30 to 34 /
Demon - Hair 34 to 38 /
 
anyway! my first doubt:
There's a possibility to create a window on the creation character screen like that?
 
and second:If it's possible, i was thinking on something like that (second attach file)

Event starts when change job

23 April 2016 - 11:24 PM

I'm trying to make a event who trigers when a character changes his JobClass

like this:

 

-    script    Mail#004    -1,{
    OnPCStatCalcEvent:
    if(BaseJob == Job_Swordman && reward004 == 0) {
 
// my functions
 
        end;
    }
}

 

but, it's not working hahaha

any help? =)


Hairstyle Item

22 April 2016 - 07:09 PM

Hi, i'm trying to create an item how change the HairStyle when we use it.

I think about the "callfunc" but, I don't know for sure what function use... 

Any help? 

 

Like:

 

Id: 25026
    AegisName: "New_Style_001"
    Name: "Hair Style 01"
    Type: 2
    Weight: 0
    Trade: {
        nodrop: true
        notrade: true
        noselltonpc: true
        nocart: true
        nogstorage: true
        nomail: true
        noauction: true
    }
    Script: <" callfunc "getlook",1; ">
 
and, ther is any way that the item apears on the "private" itens?
 
thx..

MOB Reward

22 April 2016 - 04:12 PM

Hello, i'm making some achivments for my server and ther is one that already workings, the script gives a player one item when they get Job Level 10 by mail, and display a message and etc. Anyway, a friend makes it for my. But, I want make one that everytime a Player kills 1000 Porings, he will recive one mail (on the game) with an item, zenys and display a message and show a cuttin on the botton, just like this:

 

-    script    Mail    -1,{
    OnPCJobLvUpEvent:
    if(JobLevel == 10 && v_earn_beta == 0) {
        set .@send_name$, "Vision Server";
        set .@dest_name$, strcharinfo(0);
        set .@dest_id, getcharid(0);
        set .@title$, "Jogador Beta";
        set .@zeny, 10000;
        set .@item, 2576;
        set .@qtd, 1;
        set .@message$, "Parabéns! Você é oficialmente um "+.@title$+". Pegue uma Mochila do Jogador Beta e "+.@zeny+" zeny por seus feitos.";
        dispbottom "Uma conquista foi desbloqueada! Confira sua caixa de correio.";
        callfunc   "F_sendmail",.@send_name$,0,.@dest_name$,.@dest_id,.@title$,.@message$,0,.@zeny,.@item,.@qtd,0,0,1,0,0,0,0;
        set v_earn_beta, 1;
        end;
    }
    end;
}
 
any help? XD

MOB's

07 March 2016 - 03:46 PM

Hello guys

I was serching some mobs and etc

and i found this:

 

http://nn.ai4rei.net.../npclist/?qq=78

 

my question is: the mobs 3318 to 3338 are all in my DB with // in front. but they don't work obviously...

i got that error (attach files) 

 

Any help?

Thx haha