Jump to content
  • 0

KO Job Change Quest


Relzz

Question


  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  355
  • Reputation:   34
  • Joined:  02/09/12
  • Last Seen:  

Its 90% Made.

Project Link: https://github.com/M45T3Ryu/KO-Proyect

 

== Todo

Fixing of Old Man NPC

Battle Test

Testing of "Weaponary Test"

Check what happens when LP == 0 || -0 is reached

 

Me And M45T3R are busy, so anybody interested in completing the script may complete it.

Its 80-90% Done.

Only Few things are remaining

Edited by M45T3R
Link to comment
Share on other sites

23 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  87
  • Topics Per Day:  0.02
  • Content Count:  1335
  • Reputation:   932
  • Joined:  10/26/11
  • Last Seen:  

I know this is not my forum area, although, If it were, I would ask more formalisms at the time you mark something as a "project" here.

You are looking for -someone to debug something you have-, in other words, you are looking for "support" for one particular script you have; A project is about common goals of a whole team work about making something "new" to begin working.

Why not posting in script support?, or Script Releases?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  355
  • Reputation:   34
  • Joined:  02/09/12
  • Last Seen:  

I know this is not my forum area, although, If it were, I would ask more formalisms at the time you mark something as a "project" here.

You are looking for -someone to debug something you have-, in other words, you are looking for "support" for one particular script you have; A project is about common goals of a whole team work about making something "new" to begin working.

Why not posting in script support?, or Script Releases?

Well, you're completely right xD but i posted it here because im going to need help constantly and in proyect to see if someone is willing to help.. and this isn't a release :/ also.. the script is very big..

Edited by Ryu
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  87
  • Topics Per Day:  0.02
  • Content Count:  1335
  • Reputation:   932
  • Joined:  10/26/11
  • Last Seen:  

Oh yeah I get your point. You are right, since you are talking about a high amount of scripts.

However I believe the previous forums I mentioned are more assisted by the scripters around. I can even tell that you could have better results by posting on there.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  26
  • Topics Per Day:  0.01
  • Content Count:  331
  • Reputation:   63
  • Joined:  11/29/11
  • Last Seen:  

Block 0

Current Code:


switch(select("Roll the dice.")){
set LPOINTS, LPOINTS-1;
set .@dice, rand(1,6);
set LREADYHR,1;
mes ""+strcharinfo(0)+" *Dice#"+.@dice+"*";
mes "The dice came out as "+.@dice+".";
mes "Press Close to move forward "+.@dice+" blocks.";

Should be


switch(select("Roll the dice.")){
set LPOINTS, LPOINTS-1;
set .@dice, rand(1,6);
set LREADYHR,1;
emotion 57+.@dice,0;
mes strcharinfo(0)+" *Dice#"+.@dice+"*";
mes "The dice came out as "+.@dice+".";
mes "Press Close to move forward "+.@dice+" blocks.";

So it would show the dice number in npc.

3rd Square:

switch(select("Roll the dice.")){
set LPOINTS, LPOINTS-1;
set .@dice, rand(1,6);
mes ""+strcharinfo(0)+" *Dice#"+.@dice+"*";
mes "The dice came out as "+.@dice+".";
mes "Press Close to move forward "+.@dice+" blocks.";

Should be

switch(select("Roll the dice.")){
set LPOINTS, LPOINTS-1;
set .@dice, rand(1,6);
emotion 57+.@dice,0;
mes strcharinfo(0)+" *Dice#"+.@dice+"*";
mes "The dice came out as "+.@dice+".";
mes "Press Close to move forward "+.@dice+" blocks.";

Edited by Dastgir Pojee
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  554
  • Reputation:   70
  • Joined:  04/04/12
  • Last Seen:  

some optimization

switch(select("Enter.:Do not enter.")){
case 1:
warp "job_ko"26,111;
case 2:
close;
}

to

if(select("Enter.:Do not enter.") == 1)
 warp "job_ko",26,111;
}
close;

switch(select("Aren't you...")){
case 1:
mes "[Cougar]";
mes "I remember you from before looking for the way of the ninja.";

to

if(select("Aren't you...") == 1){
 mes "[Cougar]";
 mes "I remember you from before looking for the way of the ninja.";

and to all switches with one case to convert it to if statement... :)

and I can't see the test for weaponry....

:meow:

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  355
  • Reputation:   34
  • Joined:  02/09/12
  • Last Seen:  

Well thanks for the optimizations

and I can't see the test for weaponry....

:meow:

I thought it was like 3 tests.. but it's 4, im in 2/4.. i've finished the test of knowledge .. And that's 1/4 now im in 2/4 it's the test of survival :P

EDIT:

ADDED MORE BLOCKS

Edited by Ryu
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  355
  • Reputation:   34
  • Joined:  02/09/12
  • Last Seen:  

Well, i've lost almost all my scripts.. i've accidentaly corrupted my HD where i save all my scripts.. and music ..  and .. well all my data xD currently im re-downloading iRO.. so .. i will continue with the blocks posted up here.. (im the local file i have like 25 blocks.. and all of them are eh well xD) it is critically corrupted.. i can't repair it even with booteable programs

all the sectors are destroyed

post-2210-0-30870700-1360741185_thumb.png

Edited by Ryu
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  26
  • Topics Per Day:  0.01
  • Content Count:  331
  • Reputation:   63
  • Joined:  11/29/11
  • Last Seen:  

Well, i've lost almost all my scripts.. i've accidentaly corrupted my HD where i save all my scripts.. and music ..  and .. well all my data xD currently im re-downloading iRO.. so .. i will continue with the blocks posted up here.. (im the local file i have like 25 blocks.. and all of them are eh well xD) it is critically corrupted.. i can't repair it even with booteable programs

all the sectors are destroyed

attachicon.gifSin título1.png

Boot from windows CD, and run chkdisk twice. (It had fixed my problem last time,)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  8
  • Reputation:   1
  • Joined:  09/19/12
  • Last Seen:  

Posted · Hidden by Emistry, February 15, 2013 - non-english ~
Hidden by Emistry, February 15, 2013 - non-english ~

jajaja se te a perdido la FAT xD si puedes conectale a otro pc internamente y no por usb con un poco de suerte recuperaras la fat

si no puedes intentarlo con el easeus

Link to comment

  • Group:  Members
  • Topic Count:  112
  • Topics Per Day:  0.03
  • Content Count:  388
  • Reputation:   4
  • Joined:  05/01/12
  • Last Seen:  

wow ryu..awesome..waiting for this script :)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  355
  • Reputation:   34
  • Joined:  02/09/12
  • Last Seen:  

Yeah! It's almost at 60~70% =) idk very well but i already made Test 1, 2 and 3.. but i need to update Old Man NPC and repair many errors (im baaad at scripting)

Dastgir Helped me a lot! He did awesome work with some fuctions..

Edited by Ryu
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  26
  • Topics Per Day:  0.01
  • Content Count:  331
  • Reputation:   63
  • Joined:  11/29/11
  • Last Seen:  

Its 90% Made.

Project Link: https://github.com/M45T3Ryu/KO-Proyect

 

== Todo
Fixing of Old Man NPC
Battle Test

Testing of "Weaponary Test"
Check what happens when LP == 0 || -0 is reached

 

Me And M45T3R are busy, so anybody interested in completing the script may complete it.

Its 80-90% Done.

Only Few things are remaining.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  355
  • Reputation:   34
  • Joined:  02/09/12
  • Last Seen:  

You can also make Pull Requests in the Git if you want to make the code better :)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  26
  • Topics Per Day:  0.01
  • Content Count:  331
  • Reputation:   63
  • Joined:  11/29/11
  • Last Seen:  

Please edit the 1st topic.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  355
  • Reputation:   34
  • Joined:  02/09/12
  • Last Seen:  

Done, pls move this topic to script releases

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  280
  • Topics Per Day:  0.06
  • Content Count:  841
  • Reputation:   17
  • Joined:  04/16/12
  • Last Seen:  

Great!

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  280
  • Topics Per Day:  0.06
  • Content Count:  841
  • Reputation:   17
  • Joined:  04/16/12
  • Last Seen:  

Can this be released to public as a quest now?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  355
  • Reputation:   34
  • Joined:  02/09/12
  • Last Seen:  

Nope.. Someone needs to finish it u.u

I don't have PC so.. I can't do anything.. Im on a cellphone

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  280
  • Topics Per Day:  0.06
  • Content Count:  841
  • Reputation:   17
  • Joined:  04/16/12
  • Last Seen:  

All of the == Todo must be done right? before it can be usable?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  280
  • Topics Per Day:  0.06
  • Content Count:  841
  • Reputation:   17
  • Joined:  04/16/12
  • Last Seen:  

Link: https://github.com/M45T3Ryu/KO-Proyect

 

 

KO-Project
==========

Add the contents of quest_db.txt to your db/quest_db.txt
And load the scripts normally.

== Todo
Fixing of Old Man NPC
Battle Test
Block 38(Test of Survival)
Check official behavior of Blessed Blocks (You can cancel the dialog.. but idk when the points are added..)
Check what happens when LP == 0 || -0 is reached

Thanks! so that It can be used :) 

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  355
  • Reputation:   34
  • Joined:  02/09/12
  • Last Seen:  

Yes :DD

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  280
  • Topics Per Day:  0.06
  • Content Count:  841
  • Reputation:   17
  • Joined:  04/16/12
  • Last Seen:  

I don't see nothing wrong. With a little bump and grind.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  280
  • Topics Per Day:  0.06
  • Content Count:  841
  • Reputation:   17
  • Joined:  04/16/12
  • Last Seen:  

I've tried everything. I've edited some at Old Man to somehow let it work. But the Weaponry Test. It doesn't work :( After everything I have the items for example. And choosing melting iron. Nothing happens. :(

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...