Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

ozziedave

Members
  • Posts

    30
  • Joined

  • Last visited

    Never

ozziedave's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I must have a Wonky Monitor, thanks Kite.
  2. Many thanks to you all, One other question the rectangler boxes in the bottom left corner of the GUI. Mine are RED-BLUE-GREEN. What do thay stand for
  3. On the game GUI Interface, bottom left hand side there is an area with nothing showing if your using your own computer as a server. I would like to place a clickable icon or label to show Quests in that area. Would I have to have VB6 and the source to do this ? Thanks
  4. As a Newbie to RPG's, and having looked at various finished RPG's I am confused at the different terminology used. In Eclipse am I correct: HP - Health Points MP - Magic Points SP - Speed EXP - Experience Points Stat Points - Explanation Please Class Def - Class Defination ?? Thanks for your help.
  5. Did find this many pages back: –---------------------------------------------------------------------------- I'm going to assume you have two water tiles you want to animate. Put the first tile down under "Mask" (or "Mask2"), then put the second on top of it with the animation. It will cycle between the two water frames ------------------------------------------------------------------------------ I guess this will have to do, but very limiting in this day & Age.
  6. But that is only good for tiles, they don't seem to be animated, they just blink on & off, no real animation, unless I am mistaken.
  7. How do you get an animation into 2.7, don't mean one that Flashes on and off, say a water Fountain that water flows out of. I read someone say SWF animation, if so how do you place them on your map. Many Thanks
  8. GOT IT. Had to chage it slightly to get it to work, placed my Zorgon.ini in the Server Directory and it works fine. Case 2 '########## RING QUEST ########### If getvar(getplayername(index) & ".ini", "QUEST", "quest1") = 0 Then Call PlayerMsg(index, "I'm the Gate Keeper, can you buy me Zorgon's Ring from the store?", 12) If CanTake(Index, 4, 1) = false then Call PlayerMsg(index, "Better Hurry Now !!", 12) Else Call TakeItem(index, 4, 1) Call GiveItem(index, 4, 100) Call PlayerMsg(index, "Well done your Quest has been accomplished", 12) Call SetPlayerHP(index, GetPlayerHP(index) + 8) Call SetPlayerExp(index, GetPlayerExp(index) + 10) Call SendStats(index) Call PlayerMsg(index, "I've increased your HP and Exp", 15) Call putvar(getplayername(index) & ".ini", "QUEST", "quest1", 1) End If Else Call PlayerMsg(index, "Sorry this quest has been completed", 12) End If Exit Sub A BIG thanks to all and DrNova, Mr Fahrenheit.
  9. Hi DrNova, Sorry but this did not work for me, it didn't make an ini file, so I set one up myself Server/player - Zorgon.ini - [QUEST] quest1=1 Would not read or write the variable to the ini file 'If Getvar' did not work, with a 1 it should not have displayed the Quest, but it did, what am I doing wrong ?. Case 2 '########## RING QUEST ########### Call putvar("\player\"& getplayername(index) & ".ini", "QUEST", "quest1", 0) If getvar("\player\" & getplayername(index) & ".ini", "QUEST", "quest1") = 0 Then Call PlayerMsg(index, "I'm the Gate Keeper, can you buy me Zorgon's Ring from the store?", 12) If CanTake(Index, 4, 1) = false then Call PlayerMsg(index, "Better Hurry Now !!", 12) Else Call TakeItem(index, 4, 1) Call GiveItem(index, 4, 100) Call PlayerMsg(index, "Thanks I've increased your HP and Exp ", 12) Call SetPlayerHP(index, GetPlayerHP(index) + 8) Call SetPlayerExp(index, GetPlayerExp(index) + 10) Call SendStats(index) Call PlayerMsg(index, "This Quest has been completed ", 15) Call putvar("player\" & getplayername(index) & ".ini", "QUEST", "quest1", 1) End If Else Call PlayerMsg(index, "Thank you for your assistance.", 12) End If Exit Sub
  10. Hi SolJar, I get it, can script to take it from my Inventory so it looks as though the NPC has taken it. Thanks
  11. Great DrNova, this is one of the best explanations I could get, added to the skeleton Quest script, it makes it vary easy for us Newbies to understand(we need it Simplified every time). Thanks for the Explanation.
  12. Thanks for the prompt reply DrNova, could you elaberate on the scripting I need to add to the quest to complete the task. Many Thanks
  13. Hi All, How do you give an NPC something from your Inventory. Many Thanks
  14. Hi All, I have a bit of code from the Scripting Forum, but I want to stop the Quest from starting again, couls someone please help me. Case 2 '########## RING QUEST ########### Call PlayerMsg(index, "I'm the Gate Keeper, can you buy me Zorgon's Ring from the store?", 12) If CanTake(Index, 4, 1) = false then Call PlayerMsg(index, "Better Hurry Now !!", 12) Else Call TakeItem(index, 4, 1) Call GiveItem(index, 4, 100) Call PlayerMsg(index, "Thanks I've increased your HP and Exp ", 12) Call SetPlayerHP(index, GetPlayerHP(index) + 8) Call SetPlayerExp(index, GetPlayerExp(index) + 10) Call SendStats(index) Call PlayerMsg(index, "This Quest has been completed ", 15) End If Exit Sub Many Thanks
×
×
  • Create New...