Would You guy do this?

Okay so from the hack and slash tuts i got the Base Stat and like 2 others Completely finished would you trade all of my scripts i did by hand for a character creation script?

Cause this isn’t just asking for stuff anymore this is my hard work for yours

Thanks and have a great day

I think i got 4 but the fourth one needs like 12 lines added too it to complete it

If you want a response, you should go a bit more in-depth with both the scripts you are offering, and the script you want.

And I believe this belongs in collaboration.

well im offically PISSED i cant find the scripts and i am gonna keep looking one sec :frowning:

Wow i saved everything right and everything is GONE my scene my scripts ugh :frowning:

Anyone wanna give me the script were you can type in your name and pic your stats like might an stuff and ill see if i can do something for you in return i really had like 4 fully don scripts from the hack and slash tuts and they are gone :frowning:

do i get it right, that you want to trade the scripts you got from the hack 'n slash tutorial (you wrote down) for another script?

Well i was going to, but now i cant cause my unity deleted everything. and its not thats i (got) them from it i had to hand type them from the tutorial and it took time but now i just need it and il see if i can do anything in return

wow…just wow.

wow what? i was going to make a fair trade but then i found out unity lost them. its not my fault

it is not a fair trade if you just copy the work another guy made and want stuff in return for it. (my opinion)

umm dude. i coded it from the tut, and you can get the character creation from the tuts too, i just am tired of scripting since i spent like 3 hours doing them from the tut

and like 80% of people on here are RUDE and think they are ALL that cause they know more when all they are bring is rude and stupid not fair? then dont go on my damn post, if its not fair dont bother replying or talking to me

i am tired of people on here putting people down “ooo you cant do it” and crap its BULL we are a fricken forum we are ment to help people with stuff they need help with not to sit there and be a rude person and put them down and dis them. so if your not gonna be nice DONT COMMENT ON MY POSTS!!!

@legand… I think your reply was a bit strong and rude. Schlumpfsack does have a bit of a point, just cause you typed them in by hand watching a tut doesn’t really make them your work (unless you used the tut as a guide only). Sorry to hear that you lost your work, but you can’t really ask others to just give you what you need because of it. Just start retyping them in and make sure you backup your work this time. We have all lost work like you have over the years. Maybe try and redo them without looking at the tuts… it will be really great coding experience and you will learn so much more.

Good Luck,
Matt.

Its not just him its other peoplle on this forum that are rude

There’s a lot of great free stuff put up on these forums (that took a lot longer than 3 hours), and people post it without any expectation of getting anything in return (other than kudos from their fellow coders). It’s not really an environment where people respond well to “I have this sweet script if you want it I will give it to you but only if you do this for me.”

i dont need a “sweet” script i need a basic character creation screen for when i open my game client.

Entering a name, picking stats and recording them all down + the UI required to handle this isn’t easy. It might be “basic” but it’s not easy and I agree with everyone else. Trying to give away scripts you copied from a tutorial isn’t something you can trade, anyone could copy them down.

Your going to need something more original if you expect something in return, and besides, as far am I’m aware this isn’t the community for handouts. We all work hard at what we do and we all take the time and effort to learn how to do it. Come back when you have started the script yourself and maybe someone will offer some help on getting it working.

Okay can someone awnser this question what does this script do?

//Player Experience
var playerXP : GUIText;
static var xpGain;


// Player Inventory
var inventoryGui : GUITexture;
var currentBags : i1.0;
var bagSpace = 25.0;
// Controlling the Weapon
var hasWeaponOn = false;
var canThrow = false;
var rangeWeapon = false;
var weaponDMG = 10.0;
var weaponSpeed = 2.0;

class CharacterSavePlayerSave {
    var attack : int;
    var strength : int;
    var defence : int;
    var archery : int;
    var magic : int;
    var health : int;
    var Firemaking : int;
    var WoodCutting : int;
    var mining : int;
    var smelting : int;
    var crafting : int;
}

var PlayerSave: CharacterSavePlayerSave = CharacterSavePlayerSave();

class CharacterSavePlayerQuest {
    var questComplete : int;
    var questIncomplete : int;
    var questCurrentlyOn : int;
    var questRewards : int;
    var questUnavailable;

}   

var PlayerQuest: CharacterSavePlayerQuest = CharacterSavePlayerQuest();



function Update () {
}

[end code]

Okay i still need to know what the script above what you said does.