Jump to content
  • 0

parse_line: need ';'


madtoyz

Question

9 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  31
  • Topics Per Day:  0.01
  • Content Count:  666
  • Reputation:   93
  • Joined:  04/27/12
  • Last Seen:  

Your problem, is with setting a variable as an array, without the proper command/syntax.

setarray .@reward[0],671,1;  //<Item_ID>,<Amount>{,...}

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  737
  • Reputation:   216
  • Joined:  11/29/11
  • Last Seen:  

Yeah maybe like GmOcean said, well depends how you'll interprete that var after.

right now is like you doing :

.@reward = 671,1; //wich ofc mean nothing, you attempting to set 2 values on one var.

the GmOcean solution will do :

.@reward[0] = 671;

.@reward[1] = 1;

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  142
  • Reputation:   10
  • Joined:  01/21/12
  • Last Seen:  

i try already put like this

@reward[0],671,1;

but still error

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  737
  • Reputation:   216
  • Joined:  11/29/11
  • Last Seen:  

it's setarray, are you sure you tryed correctly ?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  142
  • Reputation:   10
  • Joined:  01/21/12
  • Last Seen:  

i take this script from http://rathena.org/board/topic/62248-mysterious-collection/

guild prizer.txt

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

@madtoyz

do you know the different between set and setarray ????

your solution has been provided at post#2

Your problem, is with setting a variable as an array, without the proper command/syntax.

setarray .@reward[0],671,1;  //<Item_ID>,<Amount>{,...}

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  2997
  • Reputation:   1130
  • Joined:  05/27/12
  • Last Seen:  

If you don't follow any suggestions people give you, why are you even asking? >.>

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.00
  • Content Count:  2044
  • Reputation:   682
  • Joined:  10/09/12
  • Last Seen:  

LMAO somebody rip my script xD

http://www.eathena.ws/board/index.php?s=&showtopic=239232

from the search of $WOE_CONTROL it leads to euphy's script

I think can use that one,

just ...

that script should also send a reward through mailbox with sql if the guild master is offline

which I already did in post#53 in that topic

Edited by AnnieRuru
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  142
  • Reputation:   10
  • Joined:  01/21/12
  • Last Seen:  

Your problem, is with setting a variable as an array, without the proper command/syntax.

setarray .@reward[0],671,1;  //<Item_ID>,<Amount>{,...}

i not see clearly at "setarray"..

get it....change the set into setarray.its done /sry

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...